Hi, I have just installed certificates on my hosting through certbot and it seems to have installed correctly with the ‘success’ message but when i view the domain on any browser now i get the warning of invalid certificate on Chrome, Safari, Firefox etc
My domain is:www.ignitecareers.co.uk
I ran this command:certbot certificates
It produced this output:
Found the following certs:
Certificate Name: www.ignitecareers.co.uk
Domains: www.ignitecareers.co.uk
Expiry Date: 2020-02-16 00:06:29+00:00 (VALID: 89 days)
Certificate Path: /etc/letsencrypt/live/www.ignitecareers.co.uk/fullchain.pem
Private Key Path: /etc/letsencrypt/live/www.ignitecareers.co.uk/privkey.pem
My web server is (include version):nginx version: nginx/1.10.3 (Ubuntu)
The operating system my web server runs on is (include version):1.10.3 (Ubuntu)
My hosting provider, if applicable, is:rackspace.com
I can login to a root shell on my machine (yes or no, or I don’t know): yes
I’m using a control panel to manage my site (no, or provide the name and version of the control panel):
The version of my client is (e.g. output of certbot --version or certbot-auto --version if you’re using Certbot):certbot 0.31.0
Your certificate for www.ignitecareers.co.uk is valid—but only for www.ignitecareers.co.uk, not for ignitecareers.co.uk. Your web server sends an HTTP redirect from the former to the latter.
What Certbot command did you use to get this certificate? Could you run Certbot again to add ignitecareers.co.uk as another name on the same certificate? … like -d www.ignitecareers.co.uk -d ignitecareers.co.uk or something.
Don’t know how to press words, but there may be a setting in there.
I say that because: curl -Iki https://www.ignitecareers.co.uk/ HTTP/1.1 301 Moved Permanently Server: nginx/1.10.3 (Ubuntu) Date: Mon, 18 Nov 2019 02:08:12 GMT Content-Type: text/html; charset=UTF-8 Connection: keep-alive X-Redirect-By: WordPress Location: https://ignitecareers.co.uk/ X-Server: ignite-wp-prod
certbot finds only finds www.ignitecareers.co.uk as an option during installation
is there away to install for all variations? https:// www. https://www. etc
any ideas?
I tried changing this in /etc/nginx/sites-available server_name www.ignitecareers.co.uk; server_name ignitecareers.co.uk;
no luck
Did you restart the web server?
This: server_name www.ignitecareers.co.uk; server_name ignitecareers.co.uk;
Should look like this: server_name www.ignitecareers.co.uk; server_name ignitecareers.co.uk;
Here is the output of the default file in /etc/nginx/sites-enabled
after making the change
i did restart nginx sudo systemctl restart nginx
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name www.ignitecareers.co.uk;
server_name ignitecareers.co.uk;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
# fastcgi_pass unix:/run/php/php7.0-fpm.sock;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}