acme.sh申请免费https证书

China☆狼群 提交于 2019-12-11 20:54:45

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
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!