This folder contains the djauth django application; this uses
the djmantis database to provide authentification services for
normal apache controls.

The tub django application is controlled by this mod_python based
setup

Alias /djauth/media-admin /home/rptlab/website/admin.reportlab.com/htdocs/rsrc/djauth-media-admin
<Location "/djauth/">
    SetHandler python-program
    SetEnv DJANGO_SETTINGS_MODULE djauth.settings
    PythonHandler django.core.handlers.modpython
    #PythonDebug On
    PythonInterpreter djauth
</Location>
<Location "/djauth/media-admin">
	SetHandler None
</Location>

The app lives at
	https://admin.reportlab.com/djauth/admin/
but you can also change it users/groups via
	https://admin.reportlab.com/mantis/admin/

To control a location you need stuff like

AuthType basic
AuthName "djauth test number two"
Require valid-user
Require group rptlab
PythonInterpreter djauth
PythonAuthenHandler djauth.modpython

