I\'m trying to run two Django projects simultaneously. I happened to be using mod_wsgi, and found the site is acting weird. Perhaps there would be a workaround, but I\'d lik
Use this as a workaround:
WSGIDaemonProcess pydaemon-1 processes=1 threads=5
WSGIDaemonProcess pydaemon-2 processes=1 threads=5
WSGIScriptAlias /test /var/www/html/test/wsgi.py
WSGIProcessGroup pydaemon-1
WSGIApplicationGroup %{GLOBAL}
WSGIScriptAlias /proto /var/www/html/proto/wsgi.py
WSGIProcessGroup pydaemon-2
WSGIApplicationGroup %{GLOBAL}
This will force each application into separate daemon process group and no way they should be able to interfere with each other.
If that still doesn't work, you have problems with your WSGI script file somehow.