Does it means that, in the httpd.conf file, I create a new location to /FloatCanvas/login and comment out the Auth stuff in the /floatCanvas location? Or should this be done in the <Directory> entry instead. It is obvious by now that I winged this config file from a couple HOWTO without knowing what I was doing ;)
Thanks, Christian Noah Kantrowitz wrote: > bongotastic wrote: > >> Hi, I setup a site which I would like to make readable by anonymous >> (without a login dialog). At the moment, I have two users which are >> granted TRAC_ADMIN. I use mod_python so my httpd.conf looks like this: >> >> ... >> <Directory /var/lib/trac/FloatCanvas/> >> AllowOverride AuthConfig >> </Directory> >> <Location /FloatCanvas> >> SetHandler mod_python >> PythonHandler trac.web.modpython_frontend >> PythonOption TracEnv /var/lib/trac/FloatCanvas >> PythonOption TracUriRoot /FloatCanvas >> PythonDebug on >> AuthType Basic >> AuthName "FloatCanvas Project" >> AuthUserFile /var/lib/trac/FloatCanvas/.htpasswd >> Require valid-user >> </Location> >> ... >> >> How can I let anonymous/guest on the site without being prompted for a >> login in the first place? Removing the login dialog leads to a python >> exception when I click on login. >> > > Authentication should only be forced on the /FloatCanvas/login location. > > --Noah > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
