Running Flask via FastCGI in IIS at application level instead of website leve
问题 I've configured the basic Flask web sample in a VENV and now it is correctly published through IIS via FastCGI. Well, here it is my trivial sample00.py from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello, World, from Flask!" and the web.config, a little more involved: <?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <handlers> <add name="PythonHandler" path="*" verb="*" modules="FastCgiModule" scriptProcessor="F:\Appl\flask\venv