Hi all,
I am using a remote_user mode for an app (app) with wsgi authentication, but I don't know how to implement a logout page. I don't see anything about this on the doc, thanks for your help.
Another thing how to setup a session max age with this type of authentication ?
<Directory "/var/www/app">
AuthType Basic
AuthName "Restricted access to group members"
AuthBasicProvider wsgi
WSGIAuthUserScript /var/www/django_bioinfobiogerweb/django_bioinfobiogerweb/wsgi.py
WSGIAuthGroupScript /var/www/django_bioinfobiogerweb/django_bioinfobiogerweb/wsgi.py
<RequireAll>
Require valid-user
</RequireAll>
</Directory>
Nico