扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
通过Let' s Encrypt进行免费https证书申请
创新互联公司于2013年创立,先为云安等服务建站,云安等地企业,进行企业商务咨询服务。为云安企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
安装certbot
yum install epel-release -y
yum install certbot
certbot certonly -d *.test.com --manual --preferred-challenges DNS --server https://acme-v02.api.letsencrypt.org/directory
完成后会显示域名所在目录
4、自动续期
echo "0 0,12 * * * root python -c 'import random; import time; time.sleep(random.random() * 3600)' && certbot renew" | sudo tee -a /etc/crontab > /dev/null
默认到期前30天续期,如果不满足可手动配置
/etc/letsencrypt/renewal/test.conf
5、证书清理
如果不想要了或者其他原因需要清理,执行以下命令即可
rm -rf /etc/letsencrypt/live/www.example.com/
rm -rf /etc/letsencrypt/archive/www.example.com/
rm /etc/letsencrypt/renewal/www.example.com.conf
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流