Karim Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
Joined: 13 Apr 2004 Posts: 218
|
Posted: Thu Sep 07, 2006 4:24 pm Post subject: apache vhost for trac not using webapp-config vhost |
|
|
Trying to edit some trac css-files shows that trac is using files in original /usr/share/trac not /var/www/kuroo.org/htdocs/trac.
webap-config shows trac is installed:
Code: | server ~ # webapp-config --show-installed -h kuroo.org -d trac
trac 0.9.6
|
My apache vhost conf is:
Code: | <IfModule mod_python.c>
<VirtualHost *:80 >
DocumentRoot /var/www/kuroo.org/htdocs/trac/
ServerName trac.kuroo.org
# The trac engine
<Location /kuroo>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /home/karye/kuroo
PythonOption TracUriRoot /kuroo
</Location>
# Deals with user logins
<Location /kuroo/login>
AuthType Digest
AuthName "trac"
AuthDigestFile /home/karye/users.htdigest
Require valid-user
</Location>
</VirtualHost>
</IfModule>
|
What am I missing here? |
|