Skip to content

Commit

Permalink
Align default value for keepalive_request with NGINX default (#9518)
Browse files Browse the repository at this point in the history
* Align default value for keepalive_request with NGINX default

* Align default value for keepalive_request with NGINX default
  • Loading branch information
schaefec authored Jan 18, 2023
1 parent fe2e713 commit ea0db8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/user-guide/nginx-configuration/configmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"|
Expand Down Expand Up @@ -1348,4 +1348,4 @@ will be allowed.

See also [#disable-pathtype-validation](#disable-pathtype-validation).

_**default:**_ "^%$[](){}*+?|"
_**default:**_ "^%$[](){}*+?|"
2 changes: 1 addition & 1 deletion internal/ingress/controller/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ func NewDefault() Configuration {
GzipMinLength: 256,
GzipTypes: gzipTypes,
KeepAlive: 75,
KeepAliveRequests: 100,
KeepAliveRequests: 1000,
LargeClientHeaderBuffers: "4 8k",
LogFormatEscapeJSON: false,
LogFormatStream: logFormatStream,
Expand Down

0 comments on commit ea0db8d

Please sign in to comment.