Merge f0a05b3137
into 4bd0f49b22
This commit is contained in:
commit
d122f56fac
2 changed files with 3 additions and 2 deletions
|
@ -412,7 +412,7 @@ The following table shows the options, the default value and a description.
|
||||||
|
|
||||||
|name |default|
|
|name |default|
|
||||||
|---------------------------|------|
|
|---------------------------|------|
|
||||||
|body-size|1m|
|
|body-size|0 (unlimited)|
|
||||||
|custom-http-errors|" "|
|
|custom-http-errors|" "|
|
||||||
|enable-dynamic-tls-records|"true"|
|
|enable-dynamic-tls-records|"true"|
|
||||||
|enable-sticky-sessions|"false"|
|
|enable-sticky-sessions|"false"|
|
||||||
|
|
|
@ -30,7 +30,8 @@ import (
|
||||||
const (
|
const (
|
||||||
// http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
|
// http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
|
||||||
// Sets the maximum allowed size of the client request body
|
// Sets the maximum allowed size of the client request body
|
||||||
bodySize = "1m"
|
// Default: unlimited.
|
||||||
|
bodySize = "0"
|
||||||
|
|
||||||
// http://nginx.org/en/docs/ngx_core_module.html#error_log
|
// http://nginx.org/en/docs/ngx_core_module.html#error_log
|
||||||
// Configures logging level [debug | info | notice | warn | error | crit | alert | emerg]
|
// Configures logging level [debug | info | notice | warn | error | crit | alert | emerg]
|
||||||
|
|
Loading…
Reference in a new issue