Hey all, - If I put "options MultiViews" apache finds my python file and displays it as plain text - If I put "options none" apache throws a 404 - Error: Target WSGI script not found or unable to stat - But the file is obviously there and shouldn't 404, since it displays plaintext with MultiViews.
httpd.conf: WSGIScriptAlias /wsgi "C:/wsgi_app/wsgi_app.py" <Directory "C:/wsgi_app"> AllowOverride None Options none Require all granted </Directory> WSGI module is loaded, Apache is serving on localhost, etc. Any advice on how to troubleshoot? -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
