I've just set up Trac 0.11 from Yum on Centos 5, using mod_python.
I've got the following in Apache's conf.d/trac.conf:

<Location "/trac/">
  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnvParentDir /var/trac
  PythonOption TracUriRoot /trac
</Location>

<LocationMatch "/trac/[^/]+/login">
  AuthType Basic
  AuthName "Trac"
  AuthUserFile /var/www/trac/.htpasswd
  Require valid-user
</LocationMatch>

... which gives anyone access to /trac and /trac/Project1, /trac/
Project2, but then only valid users can log in to the actual
projects.

What I'd like is for the list of projects (i.e. /trac) only to be
visible to a certain restricted list of users, but for the actual
project locations to still be available to anyone on the permissions
list for that project.   Is this possible?

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to