I am debugging a really strange problem with the application deployed by mod_wsgi, as a result of which Django / Apache (still unknown which) gave the status of 500 errors to some users instead of the correct 404. I want to exclude Apache from the debugging environment to determine which part of the installation is damaged, and send my requests manually to the WSGI handler.
I suspect this is as simple as setting up the environment and running python wsgi_handler.py , but is this correct? What is necessary for the environment? Any pointers to existing documentation?
source share