Metadata-Version: 1.1
Name: django-letsencrypt
Version: 0.9.3
Summary: A Simple django app to handle Let's Encrypt ACME challenges.
Home-page: https://github.com/urda/django-letsencrypt
Author: Peter Urda
Author-email: noreply@urda.cc
License: Apache License, Version 2.0
Description: Let's Encrypt App for Django
        ============================
        
        .. image:: https://travis-ci.org/urda/django-letsencrypt.svg?branch=master
           :target: https://travis-ci.org/urda/django-letsencrypt
        
        .. image:: https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/urda/django-letsencrypt/branch/master
        
        This Django app makes it easy to manage all of your
        `ACME challenges <https://letsencrypt.github.io/acme-spec/>`_.
        :code:`django-letsencrypt` will add a simple model that you can manage through
        the :code:`django` admin interface. Simply add your :code:`ACME challenge` and
        :code:`response`, and your app will serve up the necessary URL for
        `Let\'s Encrypt <https://letsencrypt.org/how-it-works/>`_ validation.
        
        Quick Start
        -----------
        
        1. Add :code:`letsencrypt` to your :code:`INSTALLED_APPS`
        
        .. code:: python
        
            INSTALLED_APPS = [
                ... ,
                'letsencrypt',
                ... ,
            ]
        
        2. Included the :code:`letsencrypt` in your project's :code:`urls.py`,
           or where applicable
        
        .. code:: python
        
            url(r'^.well-known/', include('letsencrypt.urls'))
        
        3. Run :code:`manage.py migrate` to create the required table for the
           :code:`letsencrypt` model
        
        4. Create your :code:`ACME Challenge` objects in your Django admin interface
        
        5. Test your :code:`ACME Challenge` objects and their responses by visiting
           them:
        
        .. code::
        
            {Django Site}/.well-known/acme-challenge/challenge_text
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
