Metadata-Version: 2.1
Name: django-auth-wall
Version: 0.3.0
Summary: Puts your staging site behind a basic auth layer.
Home-page: https://github.com/theskumar/django-auth-wall
Author: Saurabh Kumar
Author-email: thes.kumar@gmail.com
License: UNKNOWN
Keywords: security,django,python,basic authentication
Platform: any
Classifier: Environment :: Web Environment
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Intended Audience :: System Administrators

django-auth-wall
================

.. image:: https://img.shields.io/pypi/v/django-auth-wall.svg
    :target: https://pypi.python.org/pypi/django-auth-wall
    :alt: Latest PyPI version

.. image:: https://travis-ci.org/theskumar/django-auth-wall.svg
   :target: https://travis-ci.org/theskumar/django-auth-wall
   :alt: Latest Travis CI build status

A very basic Basic Auth middleware that uses a username/password defined in
your environment variable or settings.py to protect whole of your site.
Does not use Django auth.

Handy for quickly securing an entire site during development, for example.

**Note**:  Environment variables is preferred over ``settings.py``.

Usage
-----

.. code::

    # In settings.py:

    MIDDLEWARE = [
        'django_auth_wall.middleware.BasicAuthMiddleware',

        # all other middleware here
    ]

    # Optionally, set it here if not setting as environment variable
    # Requires both variable to be set, else site won't be protected.
    AUTH_WALL_USERNAME = 'user'
    AUTH_WALL_PASSWORD = 'pass'


Installation
------------

.. code::

    pip install django-auth-wall

**Warning**

Please make sure that you use SSL/TLS (HTTPS) to encrypt the connection between
the client and the server, when using basic access authentication. In basic
access authentication username and password are sent in cleartext, and if
SSL/TLS is not used, the credentials could be easily intercepted.

Compatibility
-------------
- Django 1.5+

Licence
-------

MIT

Authors
-------

`django-auth-wall` was written by `Saurabh Kumar <saurabh@saurabh-kumar.com>`_.


