We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21922b commit cd423efCopy full SHA for cd423ef
ktor-server/ktor-server-netty/jvm/src/io/ktor/server/netty/EngineMain.kt
@@ -70,5 +70,11 @@ public object EngineMain {
70
deploymentConfig.propertyOrNull("maxChunkSize")?.getString()?.toInt()?.let {
71
maxChunkSize = it
72
}
73
+ deploymentConfig.propertyOrNull("enableHttp2")?.getString()?.toBoolean()?.let {
74
+ enableHttp2 = it
75
+ }
76
+ deploymentConfig.propertyOrNull("enableH2c")?.getString()?.toBoolean()?.let {
77
+ enableH2c = it
78
79
80
0 commit comments