Config/Annotations: Add proxy-busy-buffers-size. (#12433)
This commit is contained in:
parent
5ae018e5df
commit
d1dc3e827f
10 changed files with 59 additions and 0 deletions
|
|
@ -850,6 +850,7 @@ func NewDefault() Configuration {
|
|||
ProxySendTimeout: 60,
|
||||
ProxyBuffersNumber: 4,
|
||||
ProxyBufferSize: "4k",
|
||||
ProxyBusyBuffersSize: "8k",
|
||||
ProxyCookieDomain: "off",
|
||||
ProxyCookiePath: "off",
|
||||
ProxyNextUpstream: "error timeout",
|
||||
|
|
|
|||
|
|
@ -1255,6 +1255,7 @@ func (n *NGINXController) createServers(data []*ingress.Ingress,
|
|||
ReadTimeout: bdef.ProxyReadTimeout,
|
||||
BuffersNumber: bdef.ProxyBuffersNumber,
|
||||
BufferSize: bdef.ProxyBufferSize,
|
||||
BusyBuffersSize: bdef.ProxyBusyBuffersSize,
|
||||
CookieDomain: bdef.ProxyCookieDomain,
|
||||
CookiePath: bdef.ProxyCookiePath,
|
||||
NextUpstream: bdef.ProxyNextUpstream,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue