You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
Time in which from the header preamble starts it must be completed. If exceeded the client is determined to be disconnected and the request aborted.
Failure state: 408 Request Timeout
"The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time."
Implementation-wise the timer can use the same timer as Keep-alive; as a multi stage/state timer.
When deployed in recommended configuration with a reverse proxy (e.g. IIS/nginx) this would be handled by the proxy - however, this wouldn't apply in a pure Kestrel deployment.
The text was updated successfully, but these errors were encountered:
Time in which from the header preamble starts it must be completed. If exceeded the client is determined to be disconnected and the request aborted.
Failure state:
408 Request Timeout
"The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time."
ngnix default
client_header_timeout
60sImplementation-wise the timer can use the same timer as Keep-alive; as a multi stage/state timer.
When deployed in recommended configuration with a reverse proxy (e.g. IIS/nginx) this would be handled by the proxy - however, this wouldn't apply in a pure Kestrel deployment.
The text was updated successfully, but these errors were encountered: