Skip to content Skip to sidebar Skip to footer

How Do You Set Up A Python Wsgi Server Under Iis?

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 application, I went to

Solution 1:

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

Solution 2:

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

Solution 3:

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

Post a Comment for "How Do You Set Up A Python Wsgi Server Under Iis?"