I have a CppCMS based application and I cant use IIS's FastCGI connector as it is broken for my use thus I want to try to use the internal HTTP server designed for debug purposes behind IIS.
I it is quite simple web server for an application that handles basic HTTP/1.0 requests and does not care too much about security like DoS, file serving and more.
So I'd like to know if it is possible to use IIS in front of such application such that it would:
- Sanitize all requests - ensure that they are proper HTTP
- Handle all DoS issues like timeouts
- Serve the static files.
Is this something that can be configured and done at all?