1、下载acme.sh
curl https://get.acme.sh | sh
或者
wget -O - https://get.acme.sh | sh
或者
git clone https://github.com/Neilpang/acme.sh.git
cd ./acme.sh
./acme.sh --install
2、以cloudfare为例
获取 api cf_key和你的cloudfare邮箱
查看cf_key (其他的域名提供商请自行查看https://github.com/Neilpang/acme.sh/wiki/dnsapi)
3、linux命令
export CF_Key="ebee68csfdfb9707eefsafa6405c57c4e67251b"
export CF_Email="fjsjff@qq.com"
#申请证书
~/.acme.sh/acme.sh --issue -d gojw.xyz -d *.gojw.xyz --dns dns_cf
#设置证书和密钥存放位置
~/.acme.sh --installcert -d gojw.xyz \
--key-file /usr/local/gojw.xyz.key \
--fullchain-file /usr/local/fullchain.cer \
4、一键申请脚本
wget https://github.com/jw-star/auto.js-/blob/master/myssl.sh
准备好你的apikey 邮箱或者账号
bash myssl.sh
来源:CSDN
作者:食之无味,弃之可惜
链接:https://blog.csdn.net/qq_39846820/article/details/103496925