Metadata-Version: 1.0
Name: django-revproxy
Version: 0.2.1
Summary: Yet another Django reverse proxy application.
Home-page: https://github.com/TracyWebTech/django-revproxy
Author: Sergio Oliveira
Author-email: sergio@tracy.com.br
License: MPL v2.0
Description: django-revproxy
        ===============
        
        A simple reverse proxy using Django. It allows to use Django as a 
        reverse Proxy to HTTP requets. It also allows to use Django as an
        authentication Proxy.
        
        
        Features
        ---------
        
        * Proxies GET and POST requests
        * Copy all http headers sent from the client to the proxied server
        * Copy all http headers sent from the proxied server to the client (except `hop-by-hop`_)
        * Sets the http header REQUEST_USER if the user is logged in Django
        * Handles redirects
        * No external dependencies (uses only Python standard library)
        
        .. _hop-by-hop: http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.5.1
        
        
        Install
        --------
        
        Because ``django-revproxy`` still in development it is not on python package index (pypi).
        For now you can install it using ``pip`` directly from the github repo.
        
        .. code-block::
        
            pip install https://github.com/TracyWebTech/django-revproxy
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
