本文主要是介绍使用Certbot申请Lets Encrypt证书,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、安装certbot
yum install certbot -y
2、申请证书
certbot certonly --standalone -d dev.anlitech.com
3、更新证书
certbot renew --dry-run
4、自动续期
crontab -e
0 0 * * * docker stop nginx-web;certbot renew --dry-run;cp /etc/letsencrypt/live/dev.anlitech.com/privkey.pem /mnt/nginx/www/cert/dev.anlitech.com.key;cp /etc/letsencrypt/live/dev.anlitech.com/fullchain.pem /mnt/nginx/www/cert/dev.anlitech.com.pem;docker restart nginx-web
这篇关于使用Certbot申请Lets Encrypt证书的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!