What's the difference between mod_wsgi and mod_python.
In order to publish django websites on VPS, which one should I install on VPS?
What's the difference between mod_wsgi and mod_python.
In order to publish django websites on VPS, which one should I install on VPS?
You should use mod_wsgi
. mod_python
is the old and direct interface to Apache from Python. wsgi
is a standard interface between any webserver and Python (mod_wsgi
is the Apache implementation).