Skip to content Skip to sidebar Skip to footer

Psp (python Server Pages) Code Under Mod_wsgi?

Is there some way to run .psp (python server pages) code under apache + mod_wsgi? While we are moving towards newer wsgi based frameworks we still have some legacy code written in

Solution 1:

No, there is no port of mod_python PSP for mod_wsgi.

Yes, you can run mod_python and mod_wsgi on same server so long as both use same version of Python and both link dynamically with Python library. See:

http://code.google.com/p/modwsgi/wiki/InstallationIssues

It isn't recommended to run both together though as mod_wsgi then gets afflicted by the memory leaks due to mod_python, plus some other configurability in mod_wsgi is restricted due to mod_python controlling Python interpreter initialisation.

Post a Comment for "Psp (python Server Pages) Code Under Mod_wsgi?"