django-maintenancemode allows you to temporary shutdown your site for maintenance work
Project description
django-maintenancemode is a middleware that allows you to temporary shutdown your site for maintenance work.
Logged in users having staff credentials can still fully use the site as can users visiting the site from an IP address defined in Django’s INTERNAL_IPS.
Authored by Remco Wendt, and some great contributors.
How it works
maintenancemode works the same way as handling 404 or 500 error in Django work. It adds a handler503 which you can override in your main urls.py or you can add a 503.html to your templates directory.
If user is logged in and staff member, the maintenance page is not displayed.
If user’s IP is in INTERNAL_IPS, the maintenance page is not displayed.
To override the default view which is used if the maintenance mode is enabled you can simply define a handler503 variable in your ROOT_URLCONF, similar to how you would customize other error handlers, e.g. :
handler503 = 'example.views.maintenance_mode'
Installation
Either checkout maintenancemode from GitHub, or install using pip :
pip install django-maintenancemode
Add maintenancemode to your INSTALLED_APPS :
INSTALLED_APPS = ( ... 'maintenancemode', )
Add MaintenanceModeMiddleware to MIDDLEWARE_CLASSES, make sure it comes after AuthenticationMiddleware :
MIDDLEWARE_CLASSES = ( ... 'django.contrib.auth.middleware.AuthenticationMiddleware', 'maintenancemode.middleware.MaintenanceModeMiddleware', )
Add variable called MAINTENANCE_MODE in your project’s settings.py file :
MAINTENANCE_MODE = True # Setting this variable to ``True`` activates the middleware.
or set MAINTENANCE_MODE to False and use maintenance command :
python ./manage.py maintenance <on|off>
Please see example application. This application is used to manually test the functionalities of this package. This also serves as a good example…
You need only Django 1.4 or above to run that. It might run on older versions but that is not tested.
Configuration
There are various optional configuration options you can set in your settings.py
# Enable / disable maintenance mode.
# Default: False
MAINTENANCE_MODE = True # or ``False`` and use ``maintenance`` command
# Sequence of URL path regexes to exclude from the maintenance mode.
# Default: ()
MAINTENANCE_IGNORE_URLS = (
r'^/docs/.*',
r'^/contact'
)
License
django-maintenancemode is released under the BSD license.
Changes
0.11.3
Added support for django 2.x, dropped support for django < 1.11. It may still work with django 1.8, but this is no longer tested.
0.11.2
Getting ready for Django 1.10 release.
Dropped support for Django 1.3 and older.
0.11.1
Enable network specify in INTERNAL_IPS
0.11.0
Added management command to set maintenance mode on/off
0.10.1
Made sure the app runs on Django 1.8.
0.10.0
Got rid of dependency on setuptools
Added ability to exclude specific paths from maintenance mode with the MAINTENANCE_IGNORE_URLS setting.
Use RequestContext when rending the 503.html template.
Use tox for running the tests instead of buildout.
Made sure the app runs on Django 1.4.
0.9.3
Minor documentation updates for the switch to github, expect more changes to follow soon.
0.9.2
Fixed an issue with setuptools, thanks for reporting this ksato9700
0.9.1
Tested django-maintenancemode with django-1.0 release (following the 1.0.X release branch)
Bundled buildout.cfg and bootstrap with the source version of the project, allowing repeatable buildout
The middleware now uses its own default config file, thanks to a patch by semente
Use INTERNAL_IPS to check for users that need access. user.is_staff will stay in place for backwards incompatibility. Thanks for the idea Joshua Works
Have setup.py sdist only distribute maintenancemode itself, no longer distribute tests and buildout stuff
Use README and CHANGES in setup.py’s long_description, stolen from Jeroen’s djangorecipe :)
Updated the documentation and now use pypi as the documentation source (link there from google code)
0.9
First release
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
Built Distribution
Hashes for django-maintenancemode-0.11.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b738ef3dee3d0bbc62e018519823624fdcd530c8ab2f83cdedd7d74d44f38c20 |
|
MD5 | 3a7f64a7f65789022bb0c87ba14320b3 |
|
BLAKE2b-256 | c0713dbf3d96478870616c876d96dbd9f397ad454383897bfd166bcb844bfa5c |
Hashes for django_maintenancemode-0.11.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 449e195f0ef501364cd8a73d5a567f3b4f368d96394bcde8a67c94ff7b1ad83e |
|
MD5 | 33ae74707d6345c5d735c8e0137a2f75 |
|
BLAKE2b-256 | fea316ac3d39331d4f4d73adf8fe1b8b06c8f9eabc2c3083dd025079d20444a0 |