一键申请Let's Encrypt 通配符证书
in Linux服务器VPS with 0 comment

一键申请Let's Encrypt 通配符证书

in Linux服务器VPS with 0 comment

下载 Certbot 客户端 $ wget https://dl.eff.org/certbot-auto

设为可执行权限 $ chmod a+x certbot-auto

换成你自己的域名 ./certbot-auto certonly -d "*.hicat.net" --manual --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory

需要定期自动更新,可以使用crontab定时任务来操作。

0 0 1 */2 * sh /root/https/certbot-auto renew
Responses