Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed the maximum size of request body allowed in HTTP request #10108

Closed
wants to merge 7 commits into from
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/http-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ The following properties are supported.
[cols="<m,<m,<2",options="header"]
|===
|Property Name|Default|Description
|quarkus.http.limits.max-body-size| `unlimited` |The maximum size of request body.
|quarkus.http.limits.max-body-size| `10240K` |The maximum size of request body.
|quarkus.http.limits.max-header-size|`2OK`|The maximum length of all headers.
|===

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ public class ServerLimitsConfig {

/**
* The maximum size of a request body.
* Default: no limit.
* Default: 10240K.
*/
@ConfigItem
@ConfigItem(defaultValue = "10240K")
public Optional<MemorySize> maxBodySize;

/**
Expand Down