Emmanuel Blot wrote:
You wrote that "The servers are both using Apache 2.0.x, mod_python,
FastCGI, etc":

I guess you are using only one frontend: mod_python *or* FastCGI. Are
you using the same frontend on both servers ?

My apologies, they both appear to be using mod_python. FastCGI is not installed on either server.

Below is the httpd.conf segment from both servers for each respective trac environment (note, the office environment uses Kerberos authentication, and the home uses simple basic authentication). I've compared the trac.ini files from each server, and the differences (IMO) should not have this effect. I can post those as well if needed.


### Office
Alias /trac/ "/usr/share/trac/htdocs/"
<Location "/worktrac">
        SetHandler mod_python
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnv /var/svn/trac/worktrac
        PythonOption TracUriRoot /worktrac
        SetEnv PYTHON_EGG_CACHE /var/svn/trac/worktrac/plugin-cache

        AuthName "Trac"
        AuthType Kerberos
        Krb5Keytab /etc/httpd/conf/keytab
        KrbAuthRealm MYREALM.ORG
        KrbAuthoritative on
        KrbMethodNegotiate off
        KrbSaveCredentials off
        KrbVerifyKDC off
        Require valid-user
</Location>


### Home
Alias /trac/ "/usr/share/trac/htdocs/"
<Location "/projects">
        SetHandler mod_python
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnv /var/svn/trac/projects
        PythonOption TracUriRoot /projects
        SetEnv PYTHON_EGG_CACHE /var/svn/trac/projects/plugin-cache

        AuthName "Trac"
        AuthType Basic
        AuthUserFile /var/svn/.htpasswd
        Require valid-user
</Location>
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac

Reply via email to