All,
I'm trying to setup different trac project with differenet version of trac
to simplify i have two track project first is uboot and second is mutireposvn.
My target is to have uboot track project on track 0.11 and multireposvn track
project on 0.12 track version
I have setup the apache server as bellow but it doesn't work properly.
Can anyone point me in the right direction?
Thank you,
This is a part of my apache config file for Trac
<Location /trac>
SetHandler mod_python
PythonPath "sys.path +
['/usr/lib/python2.4/site-packages/Trac-0.11stable_r7455-py2.4.egg']"
PythonDebug on
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnvParentDir /export/tracdata
PythonOption TracUriRoot /trac/
</Location>
<Location /trac/multireposvn>
PythonPath "sys.path +
['/usr/lib/python2.4/site-packages/Trac-0.12multirepos-py2.4.egg']"
SetHandler mod_python
PythonDebug on
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /export/tracdata/multireposvn
PythonOption TracUriRoot /trac/multireposvn
</Location>
<Location /trac/multireposvn/login>
AuthType Basic
AuthName "multireposvn"
AuthUserFile /export/svn_auth/passwords
Require valid-user
</Location>
<Location /trac/uboot>
PythonPath "sys.path +
['/usr/lib/python2.4/site-packages/Trac-0.11stable_r7455-py2.4.egg/trac]'"
SetHandler mod_python
PythonDebug on
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /export/tracdata/uboot
PythonOption TracUriRoot /trac/uboot
</Location>
<Location /trac/uboot/login>
AuthType Basic
AuthName "trac"
AuthUserFile /export/svn_auth/passwords
Require valid-user
</Location>
--
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.