-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'.
- Loading branch information
Showing
13 changed files
with
96 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
coverage: | ||
status: | ||
patch: | ||
default: | ||
enabled: yes | ||
target: 100% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include CHANGELOG.md | ||
include LICENSE | ||
include README.rst | ||
include README.md | ||
recursive-include letsencrypt/migrations *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Let's Encrypt App for Django | ||
|
||
[![Travis Build Status (Master)](https://travis-ci.org/urda/django-letsencrypt.svg?branch=master)](https://travis-ci.org/urda/django-letsencrypt) [![Codecov Status (Master)](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg)](https://codecov.io/gh/urda/django-letsencrypt/branch/master) | ||
|
||
`django-letsencrypt` will allow you to add, remove, and update any | ||
[ACME challenge](https://github.com/ietf-wg-acme/acme/) 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](https://letsencrypt.org/how-it-works/) validation. | ||
|
||
## Installation & Configuration | ||
|
||
1. `pip install django-letsencrypt` | ||
|
||
2. Add `letsencrypt` to your `INSTALLED_APPS` | ||
|
||
```python | ||
INSTALLED_APPS = [ | ||
... , | ||
'letsencrypt', | ||
... , | ||
] | ||
``` | ||
|
||
3. Include the `letsencrypt` in your project's `urls.py`, | ||
or where applicable (usually your root `urls.py`). | ||
|
||
```python | ||
url(r'^\.well-known/', include('letsencrypt.urls')) | ||
``` | ||
|
||
4. Run `manage.py migrate` to create the required table for the | ||
`letsencrypt` model | ||
|
||
5. Create your `ACME Challenge` objects in your Django admin interface | ||
|
||
6. Test your `ACME Challenge` objects and their responses by visiting | ||
them: | ||
|
||
``` | ||
{Django Site}/.well-known/acme-challenge/challenge_text | ||
``` | ||
|
||
7. Enjoy your easy to manage `ACME Challenges` inside your Django project! |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Django==1.11.7 | ||
pytz==2017.3 | ||
Django==2.0.4 | ||
pytz==2018.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters