Metadata-Version: 1.1
Name: django-auth-wall
Version: 0.1.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: saurabh@saurabh-kumar@gmail.com
License: UNKNOWN
Description: django-auth-wall
        ================
        
        .. image:: https://pypip.in/v/django-auth-wall/badge.png
            :target: https://pypi.python.org/pypi/django-auth-wall
            :alt: Latest PyPI version
        
        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::python
        
            # In settings.py:
        
            MIDDLEWARE_CLASSES = (
                '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::python
        
            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>`_.
        
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
