Let's Encrypt 通配符证书申请
Posted MarcoTan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Let's Encrypt 通配符证书申请相关的知识,希望对你有一定的参考价值。
1.获取certbot-auto
wget https://dl.eff.org/certbot-auto
2.添加执行权限
chmod u+x certbot-auto
3.申请证书
sudo ./certbot-auto --server https://acme-v02.api.letsencrypt.org/directory --manual --preferred-challenges dns-01 certonly -d "*.your-domain.com"
4.添加TXT记录
_acme-challenge.your-domain.com
记录值为:(生成的字符串)
5.可根据以下命令查询TXT记录是否生效
dig _acme-challenge.your-domain.com txt
6.证书生成成功后保存在 /etc/letsencrypt/live/your-domain.com/
中
7.证书有效期为三个月,重新生成证书命令 certbot-auto renew
以上是关于Let's Encrypt 通配符证书申请的主要内容,如果未能解决你的问题,请参考以下文章
Windows Ubuntu Bash申请免费通配符证书(Let's Encrypt)并绑定IIS
Let's Encrypt 免费通配符 SSL 证书申请教程——但是也需要email,域名所有权等,如果是黑产用的话会这样用吗?会不会暴露自己身份???
申请Let’s Encrypt通配符HTTPS证书(certbot ACME v2版)