Question regarding configuration of the Ktor Jetty...
# ktor
l
Question regarding configuration of the Ktor Jetty engine ( https://ktor.io/docs/server-engines.html#jetty-code ) How can the
org.eclipse.jetty.http.HttpParser
's
maxHeaderBytes
be configured? Currently seems to default to
8192
.
io.ktor:ktor-server-jetty
version
2.3.12
In Netty, a similar configuration could be done via application.conf: https://ktor.io/docs/server-engines.html#netty-file)
a
Unfortunately, the
HttpConfiguration
created here cannot be customized. Feel free to file an issue to address this inconvenience.
👍 1