REQUESTED
REQUIRED
Attribute | Value |
---|---|
Default Value | default |
Capability reference | org.wildfly.io.worker |
Type | STRING |
Nillable | true |
Expressions Allowed | false |
Storage | configuration |
Access Type | read-write |
Restart Required | all-services |
Attribute | Value |
---|---|
Type | INT |
Nillable | true |
Expressions Allowed | true |
Storage | configuration |
Access Type | read-write |
Restart Required | no-services |
Request Parameter | Type | Required | Expressions Allowed | Default value | Description |
---|---|---|---|---|---|
allow-encoded-slash | BOOLEAN | false | true | false | If a request comes in with encoded / characters (i.e. %2F), will these be decoded. |
allow-equals-in-cookie-value | BOOLEAN | false | true | false | If this is true then Undertow will allow non-escaped equals characters in unquoted cookie values. Unquoted cookie values may not contain equals characters. If present the value ends before the equals sign. The remainder of the cookie value will be dropped. |
always-set-keep-alive | BOOLEAN | false | true | true | If this is true then a Connection: keep-alive header will be added to responses, even when it is not strictly required by the specification. |
buffer-pipelined-data | BOOLEAN | false | true | true | If we should buffer pipelined requests. |
buffer-pool | STRING | false | false | default | The AJP listeners buffer pool |
decode-url | BOOLEAN | false | true | true | If this is true then the parser will decode the URL and query parameters using the selected character encoding (UTF-8 by default). If this is false they will not be decoded. This will allow a later handler to decode them into whatever charset is desired. |
disallowed-methods | LIST | false | true | ["TRACE"] | A comma separated list of HTTP methods that are not allowed |
enable-http2 | BOOLEAN | false | true | false | Enables HTTP2 support for this listener |
enable-spdy | BOOLEAN | false | true | false | Enables SPDY support for this listener |
enabled | BOOLEAN | false | true | true | If the listener is enabled |
enabled-cipher-suites | STRING | false | true | Configures Enabled SSL cyphers | |
enabled-protocols | STRING | false | true | Configures SSL protocols | |
max-buffered-request-size | INT | false | true | 16384 | Maximum size of a buffered request, in bytesRequests are not usually buffered, the most common case is when performing SSL renegotiation for a POST request, and the post data must be fullybuffered in order to perform the renegotiation. |
max-connections | INT | false | true | The maximum number of concurrent connections. | |
max-cookies | INT | false | true | 200 | The maximum number of cookies that will be parsed. This is used to protect against hash vulnerabilities. |
max-header-size | INT | false | true | 1048576 | The maximum size in bytes of a http request header. |
max-headers | INT | false | true | 200 | The maximum number of headers that will be parsed. This is used to protect against hash vulnerabilities. |
max-parameters | INT | false | true | 1000 | The maximum number of parameters that will be parsed. This is used to protect against hash vulnerabilities.This applies to both query parameters, and to POST data, but is not cumulative (i.e. you can potentially have max parameters * 2 total parameters). |
max-post-size | LONG | false | true | 10485760 | The maximum size of a post that will be accepted |
no-request-timeout | INT | false | true | The length of time in milliseconds that the connection can be idle before it is closed by the container | |
read-timeout | INT | false | true | Configure a read timeout for a socket, in milliseconds. If the given amount of time elapses without a successful read taking place, the socket's next read will throw a {@link ReadTimeoutException}. | |
receive-buffer | INT | false | true | The receive buffer size. | |
record-request-start-time | BOOLEAN | false | true | false | If this is true then Undertow will record the request start time, to allow for request time to be logged. This has a small but measurable performance impact |
request-parse-timeout | INT | false | true | The maximum amount of time (in milliseconds) that can be spent parsing the request | |
resolve-peer-address | BOOLEAN | false | true | false | Enables host dns lookup |
secure | BOOLEAN | false | true | false | If this is true then requests that originate from this listener are marked as secure, even if the request is not using HTTPS. |
security-realm | STRING | true | false | The listeners security realm | |
send-buffer | INT | false | true | The send buffer size. | |
socket-binding | STRING | true | false | The AJP listener socket binder | |
ssl-session-cache-size | INT | false | true | The maximum number of active SSL sessions | |
ssl-session-timeout | INT | false | true | The timeout for SSL sessions, in seconds | |
tcp-backlog | INT | false | true | 10000 | Configure a server with the specified backlog. |
tcp-keep-alive | BOOLEAN | false | true | Configure a channel to send TCP keep-alive messages in an implementation-dependent manner. | |
url-charset | STRING | false | true | UTF-8 | URL charset |
verify-client | STRING | false | true | NOT_REQUESTED | The desired SSL client authentication mode for SSL channels |
worker | STRING | false | false | default | The AJP listeners XNIO worker |
write-timeout | INT | false | true | Configure a write timeout for a socket, in milliseconds. If the given amount of time elapses without a successful write taking place, the socket's next write will throw a {@link WriteTimeoutException}. |