Dan T
03/21/2022, 3:45 PM0.0.0.0
, and I don't see a way to modify the configuration using the ServerConfig object. So the only option I'm aware of currently is to create my own class similar to Undertow. Before I do that, I thought I'd double-check in case I'm missing something or this use case changes the perspective. Thanks.dave
03/21/2022, 5:04 PMEach of the server backends implement an interface ServerConfig, which is written with sensible defaults for the server in questions, but is also designed to be used as a starting point for tweaking to API user needs. To customize, simply use the relevant ServerConfig class as a starting point and reimplement as required. See the how-to guides for an example of this in use.
https://www.http4k.org/guide/reference/servers/#customisationDan T
03/21/2022, 5:33 PM