Skip to content

exonet/certbot-dns-exonet

Repository files navigation

Certbot plugin for authentication using the Exonet DNS

pypi Python License

Certbot DNS Authenticator plugin for Exonet DNS

Conventions

  • Code style guide: PEP 8.
  • Docstring conventions: Google Python Style Guide and Markdown.

Installation

Install using pip:

    pip install certbot-dns-exonet

Usage

  1. Request an Exonet API token (contact Exonet)

  2. After the installation, verify if the plugin is available in certbot:

        certbot plugins
  3. Create an exonet.ini file:

        touch /etc/letsencrypt/exonet.ini
        chmod 0600 /etc/letsencrypt/exonet.ini
  4. Add the Exonet API token in /etc/letsencrypt/exonet.ini:

        dns_exonet_token = YOUR_EXONET_API_TOKEN
  5. Request a certificate with certbot and this plugin to obtain a certificate using DNS record authentication:

        certbot certonly \
            --config-dir /etc/letsencrypt \
            --work-dir /etc/letsencrypt \
            --logs-dir /etc/letsencrypt \
            --authenticator dns-exonet \
            --dns-exonet-credentials /etc/letsencrypt/exonet.ini \
            -d domain.com

Change log

Please see releases for more information on what has changed recently.

Security

If you discover any security related issues please email development@exonet.nl instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.