
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
django-maintenancemode
Advanced tools
django-maintenancemode allows you to temporary shutdown your site for maintenance work
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 <https://github.com/shanx>
, and some great contributors <https://github.com/shanx/django-maintenancemode/contributors>
.
.. image:: https://img.shields.io/pypi/v/django-maintenancemode.svg :target: https://pypi.python.org/pypi/django-maintenancemode/
.. image:: https://img.shields.io/pypi/dm/django-maintenancemode.svg :target: https://pypi.python.org/pypi/django-maintenancemode/
.. image:: https://img.shields.io/github/license/shanx/django-maintenancemode.svg :target: https://pypi.python.org/pypi/django-maintenancemode/
.. image:: https://img.shields.io/travis/shanx/django-maintenancemode.svg :target: https://travis-ci.org/shanx/django-maintenancemode/
.. image:: https://coveralls.io/repos/github/shanx/django-maintenancemode/badge.svg?branch=develop :target: https://coveralls.io/github/shanx/django-maintenancemode?branch=develop
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. :
.. code-block:: python
handler503 = 'example.views.maintenance_mode'
Either checkout maintenancemode
from GitHub, or install using pip :
.. code-block:: bash
pip install django-maintenancemode
Add maintenancemode
to your INSTALLED_APPS
:
.. code-block:: python
INSTALLED_APPS = (
...
'maintenancemode',
)
Add MaintenanceModeMiddleware
to MIDDLEWARE_CLASSES
, make sure it comes after AuthenticationMiddleware
:
.. code-block:: python
MIDDLEWARE_CLASSES = (
...
'django.contrib.auth.middleware.AuthenticationMiddleware',
'maintenancemode.middleware.MaintenanceModeMiddleware',
)
Add variable called MAINTENANCE_MODE
in your project's settings.py
file :
.. code-block:: python
MAINTENANCE_MODE = True # Setting this variable to ``True`` activates the middleware.
or set MAINTENANCE_MODE
to False
and use maintenance
command :
.. code-block:: shell
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.
There are various optional configuration options you can set in your settings.py
.. code-block:: python
# 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'
)
django-maintenancemode
is released under the BSD license.
.. _ROOT_URLCONF: https://docs.djangoproject.com/en/dev/ref/settings/#root-urlconf
.. _error handlers
: https://docs.djangoproject.com/en/dev/topics/http/views/#customizing-error-views
FAQs
django-maintenancemode allows you to temporary shutdown your site for maintenance work
We found that django-maintenancemode demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.