Record: RequestLimitConfigs
Provides inbound request URI, total header and entity body size threshold configurations.
Closed record
Fields
- maxUriLength int(default 4096)
- maxHeaderSize int(default 8192)
- maxEntityBodySize int(default -1)
Maximum allowed length for a URI. Exceeding this limit will result in a 414 - URI Too Long
response
Maximum allowed size for headers. Exceeding this limit will result in a
431 - Request Header Fields Too Large
response
Maximum allowed size for the entity body. By default it is set to -1 which means there
is no restriction maxEntityBodySize
, On the Exceeding this limit will result in a
413 - Payload Too Large
response