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.
At the moment, it works only for the two user which are in
the .htpasswd file.
Thanks,
Christian
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---