How do you set up a Python WSGI server under IIS?

前端 未结 3 1667
终归单人心
终归单人心 2021-01-03 20:51

I work in a Windows environment and would prefer to deploy code to IIS. At the same time I would like to code in Python.

Having read that IIS can run fastCGI applica

相关标签:
3条回答
  • 2021-01-03 21:00

    There shouldn't be any need to use FastCGI. There exists a ISAPI extension for WSGI.

    0 讨论(0)
  • 2021-01-03 21:18

    Microsoft itself develops wfastcgi (source code) to host Python code on IIS.

    0 讨论(0)
  • 2021-01-03 21:18

    We can use iiswsgi framework to setup WSGI over IIS since it is compatible with IIS web server's FastCGI protocol.It's bundled with distutils for building, distribution and installing packages with the help of Microsoft Web Deploy and Web Platform Installer.

    For more info refer the following link:

    Serving Python WSGI applications natively from IIS

    0 讨论(0)
提交回复
热议问题