BoxLang: Our new JVM Dynamic Language made by Ortus! Check it out: https://www.boxlang.io

Add generic feature to set any valid Undertow option

Description

Original runwar issue #138

Runwar has support for many of the undertow options, but it would also be handy to have a generic approach for any edge case options or new options that a user needs to tap into that we don't have first-class support for yet.

http://undertow.io/undertow-docs/undertow-docs-2.0.0/index.html#options

Activity

Show:

Brad WoodNovember 9, 2019 at 4:41 AM

Undertow actually has two separate sets of options. There are options that are part of Undertow proper, and there are options used by the underlying XNIO library.

xnio-options

The possible values for this are shown here:

https://github.com/xnio/xnio/blob/3.x/api/src/main/java/org/xnio/Options.java

undertow-options

The possible values for this are shown here:

https://github.com/undertow-io/undertow/blob/master/core/src/main/java/io/undertow/UndertowOptions.java

 

For both of these, the runwar arg is a comma delimited list of key=value pairs.

 

--xnio-options TCP_NODELAY=true,KEEP_ALIVE=false

 

--undertow-options MAX_PARAMETERS=200,ALLOW_UNESCAPED_CHARACTERS_IN_URL=true

 

Miguel MathusAugust 1, 2019 at 6:21 AM

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Fix versions

Priority

Components

Sentry

Created August 1, 2019 at 6:19 AM
Updated November 9, 2019 at 4:42 AM
Resolved November 9, 2019 at 4:42 AM

Flag notifications