CertBot搭配DNSPod

长怜發表於2024-08-11

CertBot搭配DNSPod

summary: cetbot搭配dnspod實現自動註冊ssl證書和自動續期

1.安裝pip、venv、新建certbot虛擬環境並啟用

apt install python3-pip
apt install python3.11-venv
python3 -m venv certbot-env
source certbot-env/bin/activate

2. pip安裝certbot

  • 虛擬環境內安裝certbot,pip安裝的優點為版本是最新的,(使用豆瓣源)
pip3 install certbot -i https://pypi.doubanio.com/simple/

3.安裝DNSPod擴充套件

https://github.com/tengattack/certbot-dns-dnspod

pip install git+https://github.com/tengattack/certbot-dns-dnspod.git
  • (optional)如若提示缺失zope
pip install zope.interface -i https://pypi.doubanio.com/simple/

4.certbot-dns-dnspod 配置檔案

編輯dnspod的配置ini檔案

dns_dnspod_api_id = 12345
dns_dnspod_api_token = 1234567890abcdef1234567890abcdef

5.certbot搭配外掛使用

certbot certonly -a dns-dnspod \
  --dns-dnspod-credentials /etc/letsencrypt/dnspod.ini \
  -d example.com \
  -d *.example.com

6.Certbot 常用管理命令

  • 檢視certbot當前管理的證書
certbot certificates 
  • 續期
certbot renew

相關文章