Metadata-Version: 2.1
Name: certbot-dns-active24
Version: 1.2.0
Summary: Active24 DNS authenticator plugin for Certbot
Home-page: https://github.com/jahudka/certbot-dns-active24
Author: Dan Kadera
Author-email: me@subsonic.cz
License: MIT
Download-URL: https://github.com/jahudka/certbot-dns-active24/archive/v1.2.0.tar.gz
Description: # certbot-dns-active24
        Active24 DNS authenticator plugin for Certbot
        
        An authenticator plugin for [certbot](https://certbot.eff.org/) to support [Let's Encrypt](https://letsencrypt.org/) 
        DNS challenges (dns-01) for domains managed by the nameservers of [Active24](https://www.active24.cz).
        
        This plugin is based on the [Reg.ru DNS authenticator](https://github.com/free2er/certbot-regru) by Max Pryakhin.
        
        ## Requirements
        * certbot (>=0.21.1)
        
        ## Installation
        1. First install the plugin:
           ```
           pip install certbot-dns-active24
           ```
        
        2. Configure it with your Active24 credentials:
           ```
           sudo $EDITOR /etc/letsencrypt/active24.ini
           ```
           Paste the following into the configuration file:
           ```
           dns_active24_token="your-token"
           ```
        
        3. Make sure the file is only readable by root! Otherwise all your domains might be in danger:
           ```
           sudo chmod 0600 /etc/letsencrypt/active24.ini
           ```
        
        ## Usage
        Request new certificates via a certbot invocation like this:
        
            sudo certbot certonly -a dns-active24 -d sub.domain.tld -d *.wildcard.tld
        
        Renewals will automatically be performed using the same authenticator and credentials by certbot.
        
        ## Command Line Options
        ```
         --dns-active24-credentials PATH_TO_CREDENTIALS
                                Path to Active24 account credentials INI file 
                                (default: /etc/letsencrypt/active24.ini)
        
         --dns-active24-propagation-seconds SECONDS
                                The number of seconds to wait for DNS record changes
                                to propagate before asking the ACME server to verify
                                the DNS record. Default 0. Do not use this, the plugin
                                actually checks the authoritative nameservers repeatedly
                                to ensure the changes have propagated, regardless of
                                this setting.
        ```
        
        See also `certbot --help dns-active24` for further information.
        
        ## Removal
           ```
           sudo pip uninstall certbot-dns-active24
           ```
        
        ## Development
        
        When releasing a new version, run `./release.sh <type>` from the project directory; `<type>` can be
        either `major`, `minor` or `patch`. This will update the `__version__` constant in `certbot_dns_active24/__init__.py`,
        commit the change and create an appropriate Git tag; next it will push these changes to the upstream repository,
        cleanup the `dist` directory, run `python setup.py sdist`, install `twine` if it isn't already installed and
        upload the latest release to PyPI. 
Keywords: certbot letsencrypt dns-01 plugin
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
