Align default value for keepalive_request with NGINX default (#9518)
* Align default value for keepalive_request with NGINX default * Align default value for keepalive_request with NGINX default
This commit is contained in:
parent
fe2e713f42
commit
ea0db8de77
2 changed files with 3 additions and 3 deletions
|
@ -62,7 +62,7 @@ The following table shows a configuration option's name, type, and the default v
|
|||
|[hsts-max-age](#hsts-max-age)|string|"15724800"|
|
||||
|[hsts-preload](#hsts-preload)|bool|"false"|
|
||||
|[keep-alive](#keep-alive)|int|75|
|
||||
|[keep-alive-requests](#keep-alive-requests)|int|100|
|
||||
|[keep-alive-requests](#keep-alive-requests)|int|1000|
|
||||
|[large-client-header-buffers](#large-client-header-buffers)|string|"4 8k"|
|
||||
|[log-format-escape-none](#log-format-escape-none)|bool|"false"|
|
||||
|[log-format-escape-json](#log-format-escape-json)|bool|"false"|
|
||||
|
|
|
@ -852,7 +852,7 @@ func NewDefault() Configuration {
|
|||
GzipMinLength: 256,
|
||||
GzipTypes: gzipTypes,
|
||||
KeepAlive: 75,
|
||||
KeepAliveRequests: 100,
|
||||
KeepAliveRequests: 1000,
|
||||
LargeClientHeaderBuffers: "4 8k",
|
||||
LogFormatEscapeJSON: false,
|
||||
LogFormatStream: logFormatStream,
|
||||
|
|
Loading…
Reference in a new issue