Re: Advice on deploying multiple Django instances to single Apache server

2013-08-24 Thread Branko Majic
On Fri, 23 Aug 2013 09:50:49 -0700 Jon Dufresne wrote: > Hi, > > I am getting ready to deploy my Django application. This application must > serve several independent parties. In the past, I've done this with > multiple instances of a PHP application on the server. Is

Re: Advice on deploying multiple Django instances to single Apache server

2013-08-23 Thread TinyJaguar
Just go with mod_wsgi and virtual hosts for each application. PHP and mod_wsgi may clash given the two modus operandi for Apache. MPM or prefork Alternatively you could use NGINX with gunicorn On Friday, August 23, 2013 6:50:49 PM UTC+2, Jon Dufresne wrote: > > Hi, > > I am getting ready to

Advice on deploying multiple Django instances to single Apache server

2013-08-23 Thread Jon Dufresne
Hi, I am getting ready to deploy my Django application. This application must serve several independent parties. In the past, I've done this with multiple instances of a PHP application on the server. Is this the right approach in the Django world? My server is running Apache and MySQL. Each