Metadata-Version: 1.1
Name: django-protected-media
Version: 0.0.1
Summary: A simple Django app to serve protected media
Home-page: https://www.example.com/
Author: Cobus Carstens
Author-email: cobus.carstens@gmail.com
License: BSD License
Description: ![Build Status](https://www.travis-ci.org/cobusc/protected-media-prototype.svg?branch=master)
        
        Django Protected Media
        ======================
        
        Django Protected Media is a Django app that manages media that are considered
        sensitive in a protected fashion.
        
        Not only does the media get stored in a separate filesystem location, but authorisation
        is also required to access it.
        
        The application allows for setups where Django performs the authorisation, but
        hands off the serving of the file to a web server, like Nginx.
        
        Quick start
        -----------
        
        1. Add "protected_media" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'protected_media',
            ]
        
        2. Include the URLconf in your project urls.py like this::
        
            url(r'^protected/', include('protected_media.urls')),
        
        3. Add the following settings to `settings.py`:
        
            TODO
        
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
