I would like to have 2 different trac sites available via the web:

1.  browsable directory as in
    https://myserver.com/trac

2.  private trac sites which are accessed via
    https://myserver.com/tracsite
    https://myserver.com/tracsite_1
    etc

1. works fine and is configured in /etc/httpd/conf.d/ssl.conf:

# Trac support
     <Location /trac>
         SetHandler mod_python
         PythonHandler trac.web.modpython_frontend
         PythonOption TracEnvParentDir /myserver/trac
         PythonOption TracUriRoot /trac
         PythonInterpreter main_interpreter
         PythonPath "sys.path + ['/usr/lib/python2.4/site-packages/
svn']"
     </Location>

2.  I can't figure out how to set up so that the URL
    https://myserver.com/tracsite goes directly to the wiki

Tried
    <Location "/.+/">
    <Location /tracsite>

but no success.

Suggestions appreciated.


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