Время от времени(но не всегда!) вместо контента появляется ошибка
Error occurred while reading WSGI handler:
Traceback (most recent call last):
File "C:\Python27\Lib\site-packages\wfastcgi.py", line 791, in main
env, handler = read_wsgi_handler(response.physical_path)
File "C:\Python27\Lib\site-packages\wfastcgi.py", line 633, in read_wsgi_handler
handler = get_wsgi_handler(os.getenv("WSGI_HANDLER"))
File "C:\Python27\Lib\site-packages\wfastcgi.py", line 586, in get_wsgi_handler
raise Exception('WSGI_HANDLER env var must be set')
Exception: WSGI_HANDLER env var must be set
файл web.config не меняется, все происходит на Win server 2012 + IIS
что делать?
Судя по исключению, не установлена переменная WSGI_HANDLER в окружении.
StackOverflow рекомендует:
1)Use a virtualenv for your script processor. It avoids side-effects from using a system-level Python installation. It's easier to debug that way.
2)Double check in IIS that IIS_IUSRS and IUSR have modify permissions for the folders in your Python path.