I'm trying to setup wsgi on xampp in order to run python web applications.
I've downloaded the appropriate binary from here and i've installed the module as described. As I'm running xampp, my module is located at C:\xampp\apache\modules
. I've also renamed the module (as suggested) to mod_wsgi.so
.
I've installed the module by adding the following to my httpd.conf:
LoadModule wsgi_module modules/mod_wsgi.so
immediately underneath all of the other module imports. However, whenever I attempt to restart xampp, it wont start up again. The error I get is the endlessly helpful:
The Apache2.2 service terminated with service-specific error Incorrect function..
It should be noted that if I comment out the LoadModule...
line above, my server restarts without issue. Any ideas would be greatly appreciated.