介绍
let's encrypt
可以免费申请泛域名证书,自动续签证书,默认3个月签发一次证书。
acme.sh
是可以自动申请,自动续签,自动部署let's encrypt
证书的工具,本文主要介绍使用acme.sh
使用。
let's encrypt
官方文档:https://letsencrypt.org/
acme.sh
官方文档:https://github.com/acmesh-official/acme.sh/wiki/%E8%AF%B4%E6%98%8E
安装
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| git clone https://gitee.com/neilpang/acme.sh.git
cd acme.sh ./acme.sh --install -m huangxiaoqi@163.com
export Ali_Key="LTAI5xxxxxxxxxgg7Wzr" export Ali_Secret="IxrcXgBshxxxxxxxxxRhEqzepQak" ./acme.sh --issue --dns dns_ali -d test.top -d *.test.top
./acme.sh --install-cert -d test.top --key-file /data/test.key.pem --fullchain-file /data/test.cert.pem --reloadcmd "nginx -s reload"
|