1👍
✅
Since your projects are all at separate sub URLs, simply use multiple WSGIScriptAlias
directives, one for each sub URL. And definitely use a daemon process group for each distinct Django instance.
For some additional reading see:
- http://blog.dscpl.com.au/2012/10/why-are-you-using-embedded-mode-of.html
- http://blog.dscpl.com.au/2012/10/requests-running-in-wrong-django.html
- http://blog.dscpl.com.au/2014/09/using-python-virtual-environments-with.html
There are also the mod_wsgi docs, although they are in a slight mess right now.
Source:stackexchange.com