You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Robin Thoni 5d1e939120 pycharm files 7 anni fa
.idea pycharm files 7 anni fa
certbot_pdns removed arguments short flag 7 anni fa
.gitignore init 7 anni fa
README.md README.md 7 anni fa
certbot-pdns.json improved setup 7 anni fa
setup.cfg improved setup 7 anni fa
setup.py improved setup 7 anni fa

README.md

certbot-pdns

Authenticator plugin for certbot (https://certbot.eff.org/).

Perform a DNS-01 challenge using TXT record in a PowerDNS (https://doc.powerdns.com/md/)

The advantages are:

  • No need to configure your web server to serve challenges
  • Web server not even needed
  • Can generate certificate for internal hosts that are not exposed to the Internet
  • A or CNAME record not even needed. Only the TXT record added by certbot-pdns matters.

Installation

Install or upgrade certbot:

pip install -U certbot

Install certbot-pdns from sources:

python setup.py install

Check that certbot-pdns:auth is listed when executing certbot --text plugins

Configuration

Configuration file: /etc/letsencrypt/certbot-pdns.json:

  • api-key: Your PowerDNS API Key as specified in property api-key in file /etc/powerdns/pdns.conf
  • base-url: The base URL for PowerDNS API. Require api=yes and api-readonly=no in file /etc/powerdns/pdns.conf
  • axfr-time: The time in seconds to wait for zone replication in slaves. Can be set to 0 if there is only one authoritative server for the zone.

Usage

Use certbot as usual but specify --authenticator certbot-pdns:auth certonly:

certbot --agree-tos --text --renew-by-default --authenticator certbot-pdns:auth certonly -d example.com -d www.example.com