Apache and Windows IIS are two different web servers. Are you self-hosting your application on IIS?
To set a timeout on IIS, it looks like you need to set the executionTimeout to a sensible value. If it's 3 minutes (180 seconds), then you could use the following...
<system.web>
<httpRuntime executionTimeout="180" />
</system.web>
https://msdn.microsoft.com/en-us/library/e1f13641(v=vs.85).aspx
Good luck!
Hi Robert Price,
We have updated the web.config file.
Now we wait for auditor's review after the next run.
Thanks for timely help