Django middleware to make the admin https only.
Project description
Make the Django admin only available via https.
Installation
You can install django-ssl-admin using pip.
$ pip install django-ssl-admin
And to enable you need to add it to MIDDLEWARE_CLASSES:
MIDDLEWARE_CLASSES = (
...
'ssladmin.middleware.SSLAdmin',
....
)
If your admin path is not /admin/ you can change the ADMIN_PATH setting like so:
ADMIN_PATH = '^/staff/'
If you have a reverse proxy set up remember to let Django know how it can detect a secure connection, e.g.:
SECURE_PROXY_SSL_HEADER = ('HTTP_X_SCHEME', 'https')
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-ssl-admin-1.0.tar.gz
(3.4 kB
view details)
File details
Details for the file django-ssl-admin-1.0.tar.gz.
File metadata
- Download URL: django-ssl-admin-1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
552fa46c8593a263d04440ee3a59b058c9aaf5e0403be5ed4e36f7342df62edf
|
|
| MD5 |
f9ae35551000e053facce0c7dce772bf
|
|
| BLAKE2b-256 |
c553b7ba315598fbc579c5aed6b80f1048c51be7174f7b56cd3d0d5c0702ba0a
|