Thanx Graham, I will try your solution, it seems very reasonable.
On Wednesday, March 19, 2014 1:03:50 PM UTC+2, Graham Dumpleton wrote: > > See: > > > http://stackoverflow.com/questions/2641646/how-to-accomplish-authtype-none-in-apache-2-2 > > In other words, can possibly do: > > <Location /suburl> > # All access controls and authentication are disabled > # in this directory > Satisfy Any > Allow from all > </Location> > > This is an Apache setup issue and use of mod_wsgi should not factor into > it at all. > > Graham > > On 19/03/2014, at 9:22 PM, George Mamalakis <[email protected]<javascript:>> > wrote: > > Hi all, > > I am using django on apache with mod_shib without problems, thus far. The > problem I will have to face is that I will need an area (some specific url) > where no shibboleth authentication should be present. How can I achieve > that with django, modwsgi and mod_shib? > > My apache config is as follows (only relevant info supplied): > > <VirtualHost *:80> > > <Location /Shibboleth.sso> > SetHandler shib > </Location> > > <Location /> > AuthType shibboleth > ShibRequestSetting requireSession 1 > require valid-user > </Location> > > WSGIDaemonProcess mytool processes=2 threads=15 display-name=%{GROUP} > python-path=/usr/lib/python2.6/ > WSGIProcessGroup mytool > WSGIScriptAlias / /path/to/wsgi.py > > </VirtualHost> > > Thank you all for your time in advance! > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] <javascript:>. > To post to this group, send email to [email protected] <javascript:> > . > Visit this group at http://groups.google.com/group/modwsgi. > For more options, visit https://groups.google.com/d/optout. > > > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
