Skip to main content

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.

https://img.shields.io/pypi/v/django-maintenancemode.svg https://img.shields.io/pypi/dm/django-maintenancemode.svg https://img.shields.io/github/license/shanx/django-maintenancemode.svg https://img.shields.io/travis/shanx/django-maintenancemode.svg https://coveralls.io/repos/github/shanx/django-maintenancemode/badge.svg?branch=develop

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

  1. Either checkout maintenancemode from GitHub, or install using pip :

    pip install django-maintenancemode
  2. Add maintenancemode to your INSTALLED_APPS :

    INSTALLED_APPS = (
        ...
        'maintenancemode',
    )
  3. Add MaintenanceModeMiddleware to MIDDLEWARE_CLASSES, make sure it comes after AuthenticationMiddleware :

    MIDDLEWARE_CLASSES = (
        ...
        'django.contrib.auth.middleware.AuthenticationMiddleware',
        'maintenancemode.middleware.MaintenanceModeMiddleware',
    )
  4. 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.

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-maintenancemode-0.11.5.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

django_maintenancemode-0.11.5-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file django-maintenancemode-0.11.5.tar.gz.

File metadata

  • Download URL: django-maintenancemode-0.11.5.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10

File hashes

Hashes for django-maintenancemode-0.11.5.tar.gz
Algorithm Hash digest
SHA256 2380330fa48f8e6d72fa127730febe365849cfd4f1dbec6734369128ea728cbe
MD5 12cfbb13c53a333e71af1ecba39a1061
BLAKE2b-256 84a83b9cfc377658dfa905cae75fe09f79b63d80c13937118b7772bfbc428c66

See more details on using hashes here.

File details

Details for the file django_maintenancemode-0.11.5-py3-none-any.whl.

File metadata

  • Download URL: django_maintenancemode-0.11.5-py3-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10

File hashes

Hashes for django_maintenancemode-0.11.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d013ebded57067027e7916bedfe963b266511de3195a7143c2da3a4977c82446
MD5 336333a93a52300e1821bc91f218e770
BLAKE2b-256 bf13427f53ea5360859aad22bd326f19d12d3038731fd304acf2e878855687de

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page