时间何时从Nginx客户端头超时开始?
这似乎是在建立tcp连接(SYN-SYN / ACK-ACK)之后开始的,因为Nginx是因为Nginx会尝试从数据包的报头读取。那正确吗?
请告诉我是否有文档对此进行解释。
来自Nginx文档
client_header_timeout
Defines a timeout for reading client request header. If a client
does not transmit the entire header within this time, the request is
terminated with the 408 (Request Time-out) error.
http://nginx.org/en/docs/http/ngx_http_core_module.html#client_header_timeout
谢谢。