Hello, everyone. I am new to Trac and need some help with my virtual host configuration. My server setup is CentOS5, with Apache, Nginx as reverse proxy, and cPanel.
I created a new project at /home/parkerj/trac/projectpress
This is an addition to my virtual host:
<IfModule mod_python.c>
<LocationMatch />
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /home/parkerj/trac/projectpress
PythonOption TracUriRoot /
AuthType Basic
AuthName "Trac"
AuthUserFile /etc/svnauth
Require valid-user
</LocationMatch>
</IfModule>
Now when I browse to
http://trac.projectpress.org/, it does not take me to my Trac project. Anyone can see what I am doing wrong? Any help is greatly appreciated. Thanks.