django-moat
Project description
django-moat is a mini-app adds an additional layer of authentication via HTTP Basic Auth. It’s primary use case is to prevent access staging, development, or otherwise private sites on the public internet. It is equivalent to configuring Basic Auth on your webserver (Apache, nginx) but works in environments where that is not possible (heroku).
Installation
From PyPi
pip install django-moat
To install from source
pip install -e git+https://github.com/amrox/django-moat#egg=django-moat
Configuration
Add moat.middleware.MoatMiddleware to your MIDDLEWARE_CLASSES:
MIDDLEWARE_CLASSES = ( # Existing middleware classes "moat.middleware.MoatMiddleware", )
moat has several configuration variable you may put in your settings.py
- MOAT_ENABLED
Enable or disable moat. (True or False)
MOAT_ENABLED = True
- HTTP_AUTH_REALM
Set Basic Auth Realm
HTTP_AUTH_REALM = ‘App Staging’
- MOAT_ALWAYS_ALLOW_VIEWS
A list of views to allow through moat
MOAT_ALWAYS_ALLOW_VIEWS = [‘myapp.views.home’]
- MOAT_ALWAYS_ALLOW_MODULES
A list of modules to allow through moat
MOAT_ALWAYS_ALLOW_MODULES = [‘oauth_provider.views’]
- MOAT_ALLOW_ADMIN
Let the admin site through moat. Default: False.
MOAT_ALLOW_ADMIN = True
- MOAT_DEBUG_DISABLE_HTTPS
Disable HTTPS. For testing purposes only. Don’t ship with this on.
MOAT_DEBUG_DISABLE_HTTPS = True
Finally you may want to set the SESSION_EXPIRE_AT_BROWSER_CLOSE setting.
Usage
Your site now requires that your authenticate with a staff-level user before accessing any non-whitelisted view. It is recommended that your add a dedicate staff-level user in the django admin for moat authentication.
By default, the admin views will be blocked by moat. You’ll either need to create a user with django-admin.py, or set MOAT_ALLOW_ADMIN to True.
Acknowledgements
Code borrowed from:
Thanks to Ryan Balfanz for suggesting the name moat.
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
File details
Details for the file django-moat-0.1.1.tar.gz
.
File metadata
- Download URL: django-moat-0.1.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6764e2c3d927d734d848f76af39faa75152afb2bb21245170f3fcea3fa4eebf1 |
|
MD5 | 0951c2e3840ed57e74f102e392daa9fc |
|
BLAKE2b-256 | 8d59b58760b2cd602d015c60beafaea7cf9d72d76c77b522355c29135ccc9db8 |