Skip to content

Instantly share code, notes, and snippets.

@a-patel
Created November 3, 2021 13:01
Show Gist options
  • Save a-patel/45532ca84b48af419e06ebee2212cba1 to your computer and use it in GitHub Desktop.
Save a-patel/45532ca84b48af419e06ebee2212cba1 to your computer and use it in GitHub Desktop.
Increase the timeout of .NET/.NET Core Applications
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore requestTimeout="00:20:00" processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment