-
Notifications
You must be signed in to change notification settings - Fork 41.5k
Closed
Labels
status: supersededAn issue that has been superseded by anotherAn issue that has been superseded by anothertype: enhancementA general enhancementA general enhancement
Description
Currently for Undertow I don't see a way of setting many of the HTTP connector settings such as Max Request Parameters and Max Header size. The only Parameters I see available are here:
https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
Many applications have the need to increase the maximum number of request parameters above the defaults set by Undertow.
Property | Description |
---|---|
max-parameters | The maximum number of query or path parameters that are allowed. This limit exists to prevent hash collision based DOS attacks. |
max-headers | The maximum number of headers that are allowed. This limit exists to prevent hash collision based DOS attacks. |
max-cookies | The maximum number of cookies that are allowed. This limit exists to prevent hash collision based DOS attacks. |
allow-encoded-slash | Set this to true if you want the server to decode percent encoded slash characters. This is probably a bad idea, as it can have security implications, due to different servers interpreting the slash differently. Only enable this if you have a legacy application that requires it. |
decode-url | If the URL should be decoded. If this is not set to true then percent encoded characters in the URL will be left as is. |
url-charset | The charset to decode the URL to. |
always-set-keep-alive | If the 'Connection: keep-alive' header should be added to all responses, even if not required by spec. |
disallowed-methods | A comma separated list of HTTP methods that are not allowed. HTTP TRACE is disabled by default. |
Metadata
Metadata
Assignees
Labels
status: supersededAn issue that has been superseded by anotherAn issue that has been superseded by anothertype: enhancementA general enhancementA general enhancement