On 14 August 2010 15:39, John Yeukhon Wong <gokoproj...@gmail.com> wrote: > I noticed that if I have two of them co-exist simultaneously > WSGIScriptAlias / "f:/public/testproject/apache/django.wsgi" > WSGIScriptAlias /testproject "f:/public/testproject/apache/hello.wsgi" > > I will get nothing but the same default blue page. I looked the error > log, nothing showed up. The access log, however, is interesting, but I > couldn't get any information from the web.
The problem I think is when you request /testproject, it also matches / (with the testproject part passed to the WSGI handler). Try swapping them around so the more specific one matches first, before the more generic one. I would be using separate config sections to do what you're doing though, using either ServerName or port to differentiate between sections. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.