I'm struggling with what would seem to be a permission issue ... 

Cent OS 7 + Apache + Trac 1.0 + SVN

I've gave apache group permissions to the directory, when that didn't work 
I chmod 777 the whole thing ... still no luck 

SELinux is disabled

I had to punt a bit on the http conf as the guide I was using has 
everything in root and I have other things on the server ... so it might be 
an issue in there


<VirtualHost my.host:80>
        <Location /bob>
           SetHandler mod_python
           PythonInterpreter main_interpreter
           PythonHandler trac.web.modpython_frontend
           #PythonPath "sys.path + ['/var/trac/netconf']"
           PythonOption TracEnv /var/trac/netconf
           PythonOption TracEnvParentDir /var/trac/netconf
           PythonOption TracUriRoot /bob
            # PythonOption TracEnvIndexTemplate 
/var/local/trac/templates/index-template.html
           PythonOption TracLocale en_US.UTF8
           PythonOption PYTHON_EGG_CACHE /tmp
           Order allow,deny
           Allow from all
        </Location>
        <Location /login>
          AuthType Basic
          AuthName "Netconf"
          AuthUserFile /var/trac/netconf/.htpasswd
          Require valid-user
        </Location>
</VirtualHost>


I'm missing something simple I'm sure ... but some help would be appreciated

Thanks


-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to