Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
apache vhost for trac not using webapp-config vhost
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Networking & Security
View previous topic :: View next topic  
Author Message
Karim
Apprentice
Apprentice


Joined: 13 Apr 2004
Posts: 218

PostPosted: Thu Sep 07, 2006 4:24 pm    Post subject: apache vhost for trac not using webapp-config vhost Reply with quote

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?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Networking & Security All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum