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.
Post a Comment for "How Do You Set Up A Python Wsgi Server Under Iis?"