Metadata-Version: 1.1
Name: django-letsencrypt
Version: 1.0.5
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
        
        :code:`django-letsencrypt` will allow you to add, remove, and update any
        `ACME challenge <https://letsencrypt.github.io/acme-spec/>`_ objects you may
        need through your Django admin interface. Simply add the :code:`ACME challenge`
        and :code:`response` for your app to serve up the necessary information for
        `Let\'s Encrypt <https://letsencrypt.org/how-it-works/>`_ validation.
        
        Installation & Configuration
        ----------------------------
        
        1. :code:`pip install django-letsencrypt`
        
        2. Add :code:`letsencrypt` to your :code:`INSTALLED_APPS`
        
        .. code:: python
        
            INSTALLED_APPS = [
                ... ,
                'letsencrypt',
                ... ,
            ]
        
        3. Include the :code:`letsencrypt` in your project's :code:`urls.py`,
           or where applicable (usually your root :code:`urls.py`).
        
        .. code:: python
        
            url(r'^\.well-known/', include('letsencrypt.urls'))
        
        4. Run :code:`manage.py migrate` to create the required table for the
           :code:`letsencrypt` model
        
        5. Create your :code:`ACME Challenge` objects in your Django admin interface
        
        6. Test your :code:`ACME Challenge` objects and their responses by visiting
           them:
        
        .. code::
        
            {Django Site}/.well-known/acme-challenge/challenge_text
        
        7. Enjoy your easy to manage `ACME Challenges` inside your Django project!
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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: Natural Language :: English
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: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
