I am trying to configure Python with WSGI for a specific directory on Apache, but I am getting the following error:
mod_wsgi (pid=3857): Target WSGI script '/var/www/test/test.py' does not contain WSGI application 'application'.
My test.py contains:
print 'Hello, World!'
And my wsgi.conf contains:
LoadModule wsgi_module modules/mod_wsgi.so WSGIPythonHome /usr/local/bin/python2.7 Alias /test/ /var/www/test/test.py <Directory /var/www/test> SetHandler wsgi-script Options ExecCGI Order deny,allow Allow from all </Directory>
Among other things, interestingly enough, the web browser returns a "404 Not Found" error, but, fortunately, error_log is a little more interesting.
What am I doing wrong?
hanleyhansen
source share