You are not logged in.
I did this once on Ubuntu, but I can't remember what exactly did I wrote in httpd.conf to make it work. Any help?
Offline
This worked:
AddHandler cgi-script .py
But I'm not sure if it's the correct way. I hope somebody can confirm.
Offline
You enabled CGI for URLs/files ending in .py by adding the cgi-script handler. CGI is not WSGI. They both involve the mechanics of how HTTP requests are sent to the underlying script but they use different techniques. See http://code.google.com/p/modwsgi/wiki/C … Guidelines for help configuring Apache. Read the wiki there.
Offline