Force SSL on your Django site.
Project description
# django-sslify
Do you want to force HTTPs across your Django site? You're in the right place!
![Use SSL for all the things!](https://github.com/rdegges/django-sslify/raw/master/ssl_all_the_things.jpg)
## Install
To install ``django-sslify``, simply run ``pip install django-sslify`` and
you'll get the latest version installed automatically.
## Usage
Modify your Django ``settings.py`` file, and prepend
``sslify.middleware.SSLifyMiddleware`` to your ``MIDDLEWARE_CLASSES`` setting:
``` python
MIDDLEWARE_CLASSES = (
'sslify.middleware.SSLifyMiddleware',
# ...
)
```
**NOTE**: Make sure ``sslify.middleware.SSLifyMiddleware`` is the first
middleware class listed, as this will ensure that if a user makes an unsecure
request (over HTTP), they will be redirected to HTTPs before any actual
processing happens.
## Notes
This code was taken from [this StackOverflow
thread](http://stackoverflow.com/questions/8436666/how-to-make-python-on-heroku-https-only).
I've only tested this on Heroku, so if it doesn't work for you, please send a
pull request and I'll merge.
If you're using Heroku, and have no idea how to setup SSL, read [this great
article](https://devcenter.heroku.com/articles/ssl-endpoint) which talks about
using the new SSL endpoint addon (which fucking rocks!).
## TODO
- Write unit tests.
Do you want to force HTTPs across your Django site? You're in the right place!
![Use SSL for all the things!](https://github.com/rdegges/django-sslify/raw/master/ssl_all_the_things.jpg)
## Install
To install ``django-sslify``, simply run ``pip install django-sslify`` and
you'll get the latest version installed automatically.
## Usage
Modify your Django ``settings.py`` file, and prepend
``sslify.middleware.SSLifyMiddleware`` to your ``MIDDLEWARE_CLASSES`` setting:
``` python
MIDDLEWARE_CLASSES = (
'sslify.middleware.SSLifyMiddleware',
# ...
)
```
**NOTE**: Make sure ``sslify.middleware.SSLifyMiddleware`` is the first
middleware class listed, as this will ensure that if a user makes an unsecure
request (over HTTP), they will be redirected to HTTPs before any actual
processing happens.
## Notes
This code was taken from [this StackOverflow
thread](http://stackoverflow.com/questions/8436666/how-to-make-python-on-heroku-https-only).
I've only tested this on Heroku, so if it doesn't work for you, please send a
pull request and I'll merge.
If you're using Heroku, and have no idea how to setup SSL, read [this great
article](https://devcenter.heroku.com/articles/ssl-endpoint) which talks about
using the new SSL endpoint addon (which fucking rocks!).
## TODO
- Write unit tests.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-sslify-0.1.tar.gz
(82.0 kB
view details)
File details
Details for the file django-sslify-0.1.tar.gz
.
File metadata
- Download URL: django-sslify-0.1.tar.gz
- Upload date:
- Size: 82.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 562d019703867f80b7448fa1648f74d32f2c87d64724e66b825396566cbeb58c |
|
MD5 | 37e8732a79b7d537019d3f3f18ca246a |
|
BLAKE2b-256 | c17b412ce5a6906178673100bb69b914ce6436834816b0fcd92b579120f18f07 |