add explanation to default value
This commit is contained in:
@@ -797,9 +797,9 @@ Default: `8`
|
|||||||
|
|
||||||
The maximum size of the request body. (bytes)
|
The maximum size of the request body. (bytes)
|
||||||
|
|
||||||
Default: `100000000`
|
Default: `100000000` (100 Mbyte)
|
||||||
|
|
||||||
In case of using a reverse proxy in front of check also there related option
|
In case of using a reverse proxy in front of check also there related option.
|
||||||
|
|
||||||
##### timeout
|
##### timeout
|
||||||
|
|
||||||
|
|||||||
2
config
2
config
@@ -21,7 +21,7 @@
|
|||||||
# Max parallel connections
|
# Max parallel connections
|
||||||
#max_connections = 8
|
#max_connections = 8
|
||||||
|
|
||||||
# Max size of request body (bytes)
|
# Max size of request body (bytes), default: 100 Mbyte
|
||||||
# In case of using a reverse proxy in front of check also there related option
|
# In case of using a reverse proxy in front of check also there related option
|
||||||
#max_content_length = 100000000
|
#max_content_length = 100000000
|
||||||
|
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
|
|||||||
"type": positive_int}),
|
"type": positive_int}),
|
||||||
("max_content_length", {
|
("max_content_length", {
|
||||||
"value": "100000000",
|
"value": "100000000",
|
||||||
"help": "maximum size of request body in bytes",
|
"help": "maximum size of request body in bytes (default: 100 Mbyte)",
|
||||||
"type": positive_int}),
|
"type": positive_int}),
|
||||||
("timeout", {
|
("timeout", {
|
||||||
"value": "30",
|
"value": "30",
|
||||||
|
|||||||
Reference in New Issue
Block a user