Hello,
We're using track internally for a few years now and we would like to make
the website public by allowing anonymous access.
I'm using trac 0.10.3 with apache2 and mod_python. I would like to continue
using apache (basic) authentification, so I used this:
<Directory "/usr/share/trac/htdocs">
Order allow,deny
Allow from all
</Directory>
<Location /trac>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnvParentDir /var/lib/trac
PythonOption TracUriRoot /trac
</Location>
<Location /trac/arboris>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /var/lib/trac/arboris
PythonOption TracUriRoot /trac/arboris
</Location>
<Location /trac/arboris/login>
Require group arboris-far arboris-ext arboris
</Location>
It is working, but as I found it on google and not in the doc, I prefer to
check here I'm not opening everything.
I use it together with these rights
User Action
------------------------------
anonymous LOG_VIEW
anonymous MILESTONE_VIEW
anonymous REPORT_VIEW
anonymous ROADMAP_VIEW
anonymous SEARCH_VIEW
anonymous TICKET_CREATE
anonymous TICKET_MODIFY
anonymous TICKET_VIEW
anonymous TIMELINE_VIEW
anonymous WIKI_VIEW
authenticated developer
developer BROWSER_VIEW
developer CHANGESET_VIEW
developer FILE_VIEW
developer LOG_VIEW
developer MILESTONE_ADMIN
developer REPORT_ADMIN
developer ROADMAP_ADMIN
developer SEARCH_VIEW
developer TICKET_ADMIN
developer WIKI_ADMIN
Many thanks in advance for any help
--
Sébastien Barthélemy
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---