Hi there, Donnie.
It should be possible to run Trac on a separate domain, but it's a lot easier to run it on a separate path under the same domain as the Django app.
What you want to do is embed the Trac application inside your Django project, so that all requests to Trac go to a Django view in your project, which then passes them on to Trac. Here's a very old project where I integrated Trac in Django under the URL path "/trac":
https://bitbucket.org/Gustavo/weesgo
The main files you want to look at are:
You'll see references to "twod.wsgi", which is the predecessor to "django-wsgi".
I'd recommend that you make it work with the following steps:
This e-mail, together with any attachments, is confidential and may contain copyright material of 2degrees Ltd. If you have
received it in error please notify the sender immediately and delete the message from your system. You should not copy, distribute or use it for any purpose, or disclose the contents to any other person. Any views expressed in this message are those of the
individual sender and may not reflect the views of 2degrees. Please contact us on +44 (0)1865 597640 if you need assistance.
2degrees Ltd.
Registered in England
Registered Office: 9400 Garsington Road, Oxford Business Park, Oxford OX4 2HN
Companies House Registered No. 06485099
To post to this group, send email to 2degre...@googlegroups.com.
Visit this group at https://groups.google.com/group/2degrees-floss.
For more options, visit https://groups.google.com/d/optout.
Hi, Donnie.
Did you integrate our WSGI handler as per http://pythonhosted.org/django-wsgi/request-objects.html ? That's what gives you "request.webob".
BTW, we haven't tested django-wsgi with Django 1.9 or v1.10 yet.
Cheers.