Metadata-Version: 1.2
Name: certbot-dns-standalone
Version: 1.0.1
Summary: Standalone DNS Authenticator plugin for Certbot
Home-page: https://github.com/siilike/certbot-dns-standalone
Author: Lauri Keel
Author-email: UNKNOWN
License: Apache License 2.0
Description: Standalone DNS Authenticator plugin for Certbot
        ===============================================
        
        This is a plugin that uses an integrated DNS server to respond to the
        ``_acme-challenge`` records. Simultaneous challenges are supported.
        
        A subdomain with the relevant NS and A records needs to be set up, e.g.
        for ``acme.example.com``:
        
        ::
        
            acme     IN  NS  ns.acme.example.com.
            ns.acme  IN  A   1.2.3.4
        
        and then ``_acme-challenge`` for the domain that the certificate is
        requested for configured as a CNAME record to
        ``domain.acme.example.com``.
        
        ::
        
            _acme-challenge  IN  CNAME  example.net.acme.example.com.
        
        Installation
        ============
        
        ::
        
            # pip3 install certbot certbot-dns-standalone
        
        Usage
        =====
        
        Just run ``certbot certonly`` and use the
        ``certbot-dns-standalone:dns-standalone`` plugin.
        
        Certbot needs to be run as root as it needs to bind to port 53.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software 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: Programming Language :: Python :: 3.7
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.*
