I was trying to renew my SSL by letsencrypt renew
with Certbot v0.28.0. However, the SSL crashed after the renewal.
I even tried revoke
and delete
my current certificate, and re-fetch it again, and the message look like it succeed, but I still can not use HTTPS for some reason.
root@linode:/home/billdagou# letsencrypt certonly -d dev.dagoutime.com
Saving debug log to /var/log/letsencrypt/letsencrypt.logHow would you like to authenticate with the ACME CA?
1: Nginx Web Server plugin (nginx)
2: Spin up a temporary webserver (standalone)
3: Place files in webroot directory (webroot)
Select the appropriate number [1-3] then [enter] (press 'c' to cancel): 2
Plugins selected: Authenticator standalone, Installer None
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for dev.dagoutime.com
Waiting for verification...
Cleaning up challengesIMPORTANT NOTES:
Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live/dev.dagoutime.com/fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live/dev.dagoutime.com/privkey.pem
Your cert will expire on 2019-05-05. To obtain a new or tweaked
version of this certificate in the future, simply run certbot
again. To non-interactively renew all of your certificates, run
"certbot renew"If you like Certbot, please consider supporting our work by:
Donating to ISRG / Let's Encrypt: Donate - Let's Encrypt
Donating to EFF: Support EFF's Work on Let's Encrypt | Electronic Frontier Foundation
I also checked my Nginx configuration, but didn't find anything incorrect.
server {
listen 80;
server_name dev.dagoutime.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
server_name dev.dagoutime.com;
......
ssl on;
ssl_certificate /etc/letsencrypt/live/dev.dagoutime.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/dev.dagoutime.com/privkey.pem;
......
}
Any suggestion is appreciated!
My domain is: dev.dagoutime.com
I ran this command: letsencrypt renew
It produced this output: See description above.
My web server is (include version): Nginx
The operating system my web server runs on is (include version): Ubuntu 16.04
My hosting provider, if applicable, is: Linode
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): No
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you're using Certbot): certbot 0.28.0