local-only
all
Attribute | Value |
---|---|
Default Value | false |
Type | BOOLEAN |
Nillable | true |
Expressions Allowed | true |
Storage | configuration |
Access Type | read-write |
Restart Required | all-services |
Request Parameter | Type | Required | Expressions Allowed | Default value | Description |
---|---|---|---|---|---|
allow-non-standard-wrappers | BOOLEAN | false | true | false | If true then request and response wrappers that do not extend the standard wrapper classes can be used |
default-buffer-cache | STRING | false | true | default | The buffer cache to use for caching static resources |
default-cookie-version | INT | false | true | 0 | The default cookie version servlet applications will send |
default-encoding | STRING | false | true | Default encoding to use for all deployed applications | |
default-session-timeout | INT | false | true | 30 | The default session timeout (in minutes) for all applications deployed in the container. |
directory-listing | BOOLEAN | false | true | If directory listing should be enabled for default servlets. | |
disable-caching-for-secured-pages | BOOLEAN | false | true | true | If Undertow should set headers to disable caching for secured paged. Disabling this can cause security problems, as sensitive pages may be cached by an intermediary. |
disable-file-watch-service | BOOLEAN | false | true | false | If this is true then the file watch service will not be used to monitor exploded deployments for changes |
disable-session-id-reuse | BOOLEAN | false | true | false | If this is true then an unknown session ID will never be reused, and a new session id will be generated. If this is false then it will be re-used if and only if it is present in the session manager of another deployment, to allow the same session id to be shared between applications on the same server. |
eager-filter-initialization | BOOLEAN | false | true | false | If true undertow calls filter init() on deployment start rather than when first requested. |
file-cache-max-file-size | INT | false | true | 10485760 | The maximum size of a file that will be cached in the file cache |
file-cache-metadata-size | INT | false | true | 100 | The maximum number of files that will have their metadata cached |
file-cache-time-to-live | INT | false | true | The length of time in ms an item will stay cached. By default this is 2000 for exploded deployments, and -1 (infinite) for archive deployments | |
ignore-flush | BOOLEAN | false | true | false | Ignore flushes on the servlet output stream. In most cases these just hurt performance for no good reason. |
max-sessions | INT | false | true | The maximum number of sessions that can be active at one time | |
preserve-path-on-forward | BOOLEAN | false | true | false | If this is true Undertow will reset request path, URL and URI information to original values after forward. |
proactive-authentication | BOOLEAN | false | true | true | If proactive authentication should be used. If this is true a user will always be authenticated if credentials are present. |
session-id-length | INT | false | true | 30 | The length of the generated session ID. Longer session ID's are more secure. This number refers to the number of bytes of randomness that are used to generate the session ID, the actual ID that is sent to the client will be base64 encoded so will be approximately 33% larger (e.g. a session id length of 30 will result in a cookie value of length 40). |
stack-trace-on-error | STRING | false | true | local-only | If an error page with the stack trace should be generated on error. Values are all, none and local-only |
use-listener-encoding | BOOLEAN | false | true | false | Use encoding defined on listener |