A simple Django app to handle Let's Encrypt ACME challenges.
Project description
django-letsencrypt
will allow you to add, remove, and update any
ACME challenge objects you may
need through your Django admin interface. Simply add the ACME challenge
and response
for your app to serve up the necessary information for
Let's Encrypt validation.
Installation & Configuration
pip install django-letsencrypt
Add
letsencrypt
to yourINSTALLED_APPS
INSTALLED_APPS = [ ... , 'letsencrypt', ... , ]
Include the
letsencrypt
in your project’surls.py
, or where applicable (usually your rooturls.py
).url(r'^\.well-known/', include('letsencrypt.urls'))
Run
manage.py migrate
to create the required table for theletsencrypt
modelCreate your
ACME Challenge
objects in your Django admin interfaceTest your
ACME Challenge
objects and their responses by visiting them:{Django Site}/.well-known/acme-challenge/challenge_text
Enjoy your easy to manage ACME Challenges inside your Django project!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django_letsencrypt-2.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 239d3ce6d0342d82ccd80ba63d3cbe1f2fbbdc940bd81003c0bd765e5e9b2384 |
|
MD5 | f099904bb88f0a3a26bb77c841837789 |
|
BLAKE2b-256 | 860355b03127d31c4c6920343b1296062b3d30bf9fb3eade61c4e514af794f1e |