I have trac/django co-existing happily with the following config:

They both run on separate virtual hosts under Apache2.

The trac config looks like this:

        <Location />
                SetHandler mod_python
                PythonHandler trac.web.modpython_frontend
                PythonOption TracEnv /srv/trac/tracroot
                PythonOption TracUriRoot /
        </Location>

and the django config looks like this:

<Location "/">
        SetHandler python-program
        PythonHandler django.core.handlers.modpython
        PythonPath "['/srv/www/djangositeroot'] + sys.path"
        SetEnv DJANGO_SETTINGS_MODULE djangosite.settings
</Location>

HTH
Rachel

--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to