No Description

tengattack 04bbd26e3c Bump version to 0.24.1 3 years ago
certbot_dns_dnspod fc995c2939 Fix dnspod general error 3 years ago
docs 12b0e070f2 Initial commit 6 years ago
.gitattributes 12b0e070f2 Initial commit 6 years ago
.gitignore 12b0e070f2 Initial commit 6 years ago
Dockerfile 12b0e070f2 Initial commit 6 years ago
LICENSE.txt 12b0e070f2 Initial commit 6 years ago
MANIFEST.in 12b0e070f2 Initial commit 6 years ago
README.md 0cb2e59764 Update README 6 years ago
local-oldest-requirements.txt 12b0e070f2 Initial commit 6 years ago
readthedocs.org.requirements.txt 12b0e070f2 Initial commit 6 years ago
setup.cfg 12b0e070f2 Initial commit 6 years ago
setup.py 04bbd26e3c Bump version to 0.24.1 3 years ago

README.md

DNSPod DNS Authenticator plugin for Certbot

A certbot dns plugin to obtain certificates using dnspod.

Obtain API Token

https://www.dnspod.cn/console/user/security

Install

git clone https://github.com/tengattack/certbot-dns-dnspod
cd certbot-dns-dnspod
sudo python setup.py install

If you are using certbot-auto, you should run virtualenv first:

# CentOS 7
virtualenv --no-site-packages --python "python2.7" "/opt/eff.org/certbot/venv"
/opt/eff.org/certbot/venv/bin/python2.7 setup.py install

Credentials File

certbot_dns_dnspod:dns_dnspod_api_id = 12345
certbot_dns_dnspod:dns_dnspod_api_token = 1234567890abcdef1234567890abcdef
chmod 600 /path/to/credentials.ini

Obtain Certificates

certbot certonly -a certbot-dns-dnspod:dns-dnspod \
    --certbot-dns-dnspod:dns-dnspod-credentials /path/to/credentials.ini \
    -d example.com \
    -d "*.example.com"