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 challenges objects you may
need through your Django admin interface. Simply add the ACME challenge
and response
, and your app will serve up the necessary URL for
Let's Encrypt validation.
Quick Start
Add
letsencrypt
to yourINSTALLED_APPS
INSTALLED_APPS = [
... ,
'letsencrypt',
... ,
]
Included 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
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.