Loading... 安装 acme.sh ```bash curl https://get.acme.sh | sh ``` 添加 alias ```bash alias acme.sh=~/.acme.sh/acme.sh ``` 查看 acme.sh 版本 ```bash acme.sh --version ``` 使用 zerossl ```bash acme.sh --set-default-ca --server zerossl ``` 配置 DNS API ```bash export Tencent_SecretId="<Your SecretId>" export Tencent_SecretKey="<Your SecretKey>" ``` 注册 zerossl 账户,官网:[https://zerossl.com/](https://zerossl.com/) 然后关联zerossl邮箱 ```bash acme.sh --register-account -m example@example.com --server zerossl ``` 申请zerossl泛域名证书 ```bash acme.sh --dns dns_tencent --issue -d domain.com -d *.domain.com ``` 最后修改:2024 年 04 月 15 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏
1 条评论
这篇文章写得深入浅出,让我这个小白也看懂了!