Hey all,
Have what will hopefully be an easy question. Running an old website right now on IIS 8.5 that uses Python. The site has a script map configured for the python scripts, and it just passes them directly to the Python executable with the standard arguments (-u "%s" "%s") for any requests to those scripts. The problem is, that process is slow, and it queues up each request and only does 1 at a time. For performance reasons, I'm wondering if migrating to FastCGI is possible.
Problem is, I'm not a developer, and my IIS admin experience is limited to say the least. Looking around, it seems most information online related to FastCGI is focused on PHP. What I have found for Python is quite a bit more complex than I need. Is there a simple (rough) equivalent to the script mapping setup for FastCGI?
Thanks!