Certbot自动续费Let‘s Encrypt证书

流程:Let's Encrypt会进行ca验证是否属于你的域名

使用 --webroot 模式会在 /var/www/example 中创建 .well-known 文件夹,这个文件夹里面包含了一些验证文件,certbot 会通过访问 example.com/.well-known/acme-challenge 来验证你的域名是否绑定的这个服务器。这个命令在大多数情况下都可以满足需求,

可以看下面的连接进行查看参考下,然后我这边就是可能是这个服务器做了什么限制,所以我采用dns解析的方案
连接

一、安装

shell 复制代码
# 安装 Certbot + 阿里云 DNS 插件 其他dns请看其他dns的方案问ai 
sudo apt update
sudo apt install -y certbot python3-pip
sudo pip3 install certbot-dns-aliyun

二、配置

shell 复制代码
sudo mkdir -p /etc/letsencrypt
sudo vim /etc/letsencrypt/aliyun.ini

写入(替换成你的 Key):

shell 复制代码
dns_aliyun_access_key = LTAI5xxxxxx
dns_aliyun_access_key_secret = qomUxxxxxx

必须改权限(防止泄露):

shell 复制代码
sudo chmod 600 /etc/letsencrypt/aliyun.ini

三、生成配置

-d xxx.com -d www.xxx.com是你的域名,生成成功后/etc/letsencrypt/live/xxx.com/证书的目录

shell 复制代码
sudo certbot certonly \
  --authenticator dns-aliyun \
  --dns-aliyun-credentials /etc/letsencrypt/aliyun.ini \
  --dns-aliyun-propagation-seconds 60 \
  -d xxx.com -d www.xxx.com

四、自动续费(关键)

1、测试自动续费

shell 复制代码
sudo certbot renew --dry-run

看到 Congratulations, all simulated renewals succeeded 即正常。

2、设置定时任务自动续费(自动续费后需要将证书替换docker里面,内容会变化)

shell 复制代码
sudo crontab -e

添加(每周一凌晨 3 点检查):

shell 复制代码
0 3 * * * /usr/bin/certbot renew --quiet

或者配置定时任务(自动续期 + 重载 Nginx)

shell 复制代码
0 3 * * 1 /usr/bin/certbot renew --quiet --deploy-hook "systemctl reload nginx"

--quiet:静默,只在出错时输出。

--deploy-hook:续期成功后自动重载 Nginx。

五、应急手动处理

shell 复制代码
# 立即检查并续期(到期前才会执行)
sudo certbot renew
# 强制立即重签(测试用)
sudo certbot renew --force-renewal
相关推荐
荣仔灬5 小时前
怎么查询SSL证书的信息?
网络·网络协议·ssl
moton20176 小时前
TLS会话恢复机制深度解析:Session ID、Ticket 与 TLS1.3 PSK架构
数据库·网络协议·安全·架构·ssl·物联网架构
1024小神1 天前
阿里云买了域名后自动配置SSL个人测试证书实现https
阿里云·https·ssl
ZC1995922 天前
Nginx更换ssl证书不生效
nginx·https·ssl
csdn_aspnet2 天前
MySQL安全加固十大硬核操作,从账号权限最小化到SSL加密,构建生产环境基础防护层
mysql·安全·ssl·waf
moton20173 天前
TLS协议原理全解析:从SSL到TLS1.3的安全演进
网络协议·安全·ssl
吠品4 天前
UniApp Vue3中实现rem自适应布局:动态基准值与设计稿适配实践
tcp/ip·https·ssl
Monkey-旭4 天前
Java HTTP证书全用法详解:原理、配置、实战与问题排查
java·开发语言·http·证书·ssl
成空的梦想7 天前
ZLibrary反爬机制实战分析的技术文章大纲
网络协议·https·ssl