Hi, anyone has done a deploy of various django apps on the same
Apache Server with a single VirtualHost ?
 The WSGI docs only cover a single app per Server or  VirtualHost with
WSGIScriptAlias / /usr/local/app1/scripts/django.wsg

Using /  with WSGIScriptAlias all requests go to this app, I need a
way to make various app on unique server :

WSGIScriptAlias /app1 /usr/local/app1/scripts/django.wsg
WSGIScriptAlias /app2 /usr/local/app2/scripts/django.wsg
WSGIScriptAlias /app3 /usr/local/app3/scripts/django.wsg

So if open
http://www.example.com/app1 (go to django app1)
http://www.example.com/app2 (go to django app2)

and so on; anyone has used many django apps on same apache server
without diferents virtualhosts?
Can anyone show me a  default.conf onf  apache2 and wsgi.conf?

I just wanna make one apache2 server to deploy many  django apps
without a separate VHost for each one.



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

Reply via email to