I wrote a WSGI application which I need to deploy to a server, however I've been given a server that already has mod_python installed.
I am not allowed to remove mod_python since there are some mod_python applications running on it already.
One option I considered was installing mod_wsgi alongside mod_python, however I went through sources and found that was a bad idea. Apparently mod_wsgi and mod_python don't mix well.
Another option I considered was installing mod_fastcgi and deploying it using fastcgi.
I would love to hear if someone has a better idea which doesn't break the current mod_python applications running on the server.