Path to the executable that will launch a process listening for HTTP requests.>There is no default value.
arguments
Optional string attribute.
Arguments to the executable specified in processPath.
The default value is an empty string.
startupTimeLimit
Optional integer attribute.
Duration in seconds that the module will wait for the executable to start a process listening on the port. If this time limit is exceeded, the module will kill the process. The module will attempt to launch the process again when it receives a new request and will continue to attempt to restart the process on subsequent incoming requests unless the application fails to start rapidFailsPerMinute number of times in the last rolling minute.
The default value is 120.
shutdownTimeLimit
Optional integer attribute.
Duration in seconds for which the module will wait for the executable to gracefully shutdown when theapp_offline.htm file is detected.
The default value is 10.
rapidFailsPerMinute
Optional integer attribute.
Specifies the number of times the process specified in processPath is allowed to crash per minute. If this limit is exceeded, the module will stop launching the process for the remainder of the minute.
The default value is 10.
requestTimeout
Optional timespan attribute.
Specifies the duration for which the ASP.NET Core Module will wait for a response from the process listening on %ASPNETCORE_PORT%.
The default value is "00:02:00".
stdoutLogEnabled
Optional Boolean attribute.
If true, stdout and stderr for the process specified in processPath will be redirected to the file specified in stdoutLogFile.
The default value is false.
stdoutLogFile
Optional string attribute.
Specifies the>The default value is aspnetcore-stdout.
forwardWindowsAuthToken
true or false.
If true, the token will be forwarded to the child process listening on %ASPNETCORE_PORT% as a header 'MS-ASPNETCORE-WINAUTHTOKEN' per request. It is the responsibility of that process to call CloseHandle on this token per request.
The default value is false.
disableStartUpErrorPage
true or false.
If true, the 502.5 - Process Failure page will be suppressed, and the 502 status code page configured in your web.config will take precedence.+
The default value is false.