Joker DNS Authenticator plugin for Certbot
Project description
certbot-dns-joker
Certbot DNS Authenticator plugin for Joker.
This Certbot plugin automates the
process of completing a dns-01
by creating (and removing) TXT records using
the Joker TXT record
API.
Configuring Joker
For each of your domains hosted using the Joker DNS server that would would like to obtain certificates for you must enable Dynamic DNS for the domain in the Joker web console. Do this by visiting your Joker Dashboard, clicking the "DNS" action for the domain you want to enable Dynamic DNS for, then ensuring that the "Dynamic DNS active" slider is turned on. A dialog should appear with the DynDNS username and password for that domain. These will be used in the credentials file described below.
Installation
pip install certbot-dns-joker
Certbot Arguments
To use Joker DNS authentication, pass the following arguments on certbot's command line:
Option | Description |
---|---|
--authenticator certbot-dns-joker:dns-joker |
Select the Joker authenticator plugin. (required) |
--certbot-dns-joker:dns-joker-credentials credentials_file |
Full path to config file containing domain credentials. |
--certbot-dns-joker:dns-joker-propagation-seconds delay |
Delay between setting DNS TXT record and asking the ACME server to verify it. Default: 120 |
If you don't supply the credentials file on the certbot command line you will be prompted for its location.
Credentials
You need to create a configuration file on your system (for example
/etc/letsencrypt/secrets/DOMAIN.ini
) that contains the per-domain secrets
that you obtained when you enabled DynDNS for your domain.
certbot_dns_joker:dns_joker_username = USERNAME
certbot_dns_joker:dns_joker_password = PASSWORD
certbot_dns_joker:dns_joker_domain = DOMAIN
Example
certbot certonly \
--authenticator certbot-dns-joker:dns-joker \
--certbot-dns-joker:dns-joker-credentials /etc/letsencrypt/secrets/example.com.ini \
-d example.com -d '*.example.com'
Alternate Deployment Methods
PyPI
This project has a PyPI page at https://pypi.org/project/certbot-dns-joker/.
RPM
I have built an RPM for CentOS 8, which is the platform I use. The Makefile
has an rpm
target that builds the RPM, but this has only been tested on
CentOS 8. In addition, the GitHub release contains an SRPM from which is
should be possible to build a new RPM on other RPM-based Linux distributions,
but again I have not tested this.
Docker
The Makefile has a docker-image
target to create a certbot docker image with
the certbot-dns-joker plugin installed. In addition if you set the
DOCKER_OTHER_PLUGINS makefile variable to a (space-separated) list of plugins
those plugins will also be installed.
Once the docker image is built you can run it with a command such as the following.
docker run --rm \
-v /var/lib/letsencrypt:/var/lib/letsencrypt \
-v /etc/letsencrypt:/etc/letsencrypt \
-v /var/log/letsencrypt:/var/log/letsencrypt \
--cap-drop=all \
certbot-joker \
certonly \
--authenticator certbot-dns-joker:dns-joker \
--certbot-dns-joker:dns-joker-propagation-seconds 900 \
--certbot-dns-joker:dns-joker-credentials /etc/letsencrypt/secrets/example.com.ini \
--no-self-upgrade \
--keep-until-expiring --non-interactive --expand \
--server https://acme-v02.api.letsencrypt.org/directory \
-d example.com -d '*.example.com'
Then you can run a command such as the following from cron to renew your certificates.
docker run --rm \
-v /var/lib/letsencrypt:/var/lib/letsencrypt \
-v /etc/letsencrypt:/etc/letsencrypt \
-v /var/log/letsencrypt:/var/log/letsencrypt \
--cap-drop=all \
certbot-joker \
renew
Note that plugins that attempt to do operations outside of the container (such as the apache plugin, which wants to run apachectl) will fail.
Acknowledgments
This plugin is based in large part on Matthias Bilger's certbot-dns-ispconfig plugin and the certbot-dns-dnsimple plugin.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file certbot-dns-joker-1.1.0.tar.gz
.
File metadata
- Download URL: certbot-dns-joker-1.1.0.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d03f9b5d836367fe897d3c4ebcff21ca414d5157eb3959dffc1e7861eb431f46 |
|
MD5 | 9eb61f86e26d88ed8075b57cbc6bc298 |
|
BLAKE2b-256 | 7ef073f355c648103f9f612dfabd7a901519020ff4f18ae04a089cb8ccf39619 |
File details
Details for the file certbot_dns_joker-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: certbot_dns_joker-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc5e832a8cf4dc40c470afc2bbec7e51f65491e2ff6baa6f85806fa78f3d8a9c |
|
MD5 | 68e06bea07d28ea92044b91a8d835f25 |
|
BLAKE2b-256 | f6d63eb2c33e552ebebfd2d1fbf58fbdc8886e216e810e2d74210729d489a91b |