You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently certbot is using standalone when obtaining new SSL certs and the crontab calls certbot without first stopping NGINX resulting in certbot cannot bind to port 80 and cannot validate the server.
A fix is to stop NGINX before calling certbot: 30 2 * * 1 root /usr/bin/systemctl stop nginx ; /usr/bin/certbot renew >> /var/log/letsencrypt/letsencrypt.log ; /usr/bin/systemctl start nginx
Another way is to have certbot use webroot so NGINX can stay running and reloaded after.
The text was updated successfully, but these errors were encountered:
I was able to renew the RTMP server because I know what it is running (NGINX), but am working to find what the IPFS Mirror is doing that is stopping port 80 traffic. I figured that the site was working off of port 80 so I stopped it and was able to renew for the RTMP Server side but the IPFS Mirror is getting an error still. Can you help me out with potential quick fix to let the renewal take place?
Hey guys. So I found that if you stop NGINX on both RTMP and IPFS Mirror then run , certbot renew. It will renew fine. Just remember to start up the server once it is renewed.
Currently certbot is using standalone when obtaining new SSL certs and the crontab calls certbot without first stopping NGINX resulting in certbot cannot bind to port 80 and cannot validate the server.
A fix is to stop NGINX before calling certbot:
30 2 * * 1 root /usr/bin/systemctl stop nginx ; /usr/bin/certbot renew >> /var/log/letsencrypt/letsencrypt.log ; /usr/bin/systemctl start nginx
Another way is to have certbot use webroot so NGINX can stay running and reloaded after.
The text was updated successfully, but these errors were encountered: