This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-04-21 19:23:15 +00:00 committed by GitHub
commit d122f56fac
2 changed files with 3 additions and 2 deletions

View file

@ -412,7 +412,7 @@ The following table shows the options, the default value and a description.
|name |default|
|---------------------------|------|
|body-size|1m|
|body-size|0 (unlimited)|
|custom-http-errors|" "|
|enable-dynamic-tls-records|"true"|
|enable-sticky-sessions|"false"|

View file

@ -30,7 +30,8 @@ import (
const (
// 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
bodySize = "1m"
// Default: unlimited.
bodySize = "0"
// http://nginx.org/en/docs/ngx_core_module.html#error_log
// Configures logging level [debug | info | notice | warn | error | crit | alert | emerg]