HttpServerSettings

data class HttpServerSettings(    val host: String = "0.0.0.0",     val port: Int = 8080,     val connectionIdleTimeoutSeconds: Long = 45,     val reuseAddress: Boolean = false)

HTTP server connector settings

Constructors

Link copied to clipboard
constructor(host: String = "0.0.0.0", port: Int = 8080, connectionIdleTimeoutSeconds: Long = 45, reuseAddress: Boolean = false)

Properties

Link copied to clipboard

time to live for IDLE connections

Link copied to clipboard

to listen to

Link copied to clipboard
val port: Int = 8080

to listen to

Link copied to clipboard
val reuseAddress: Boolean = false

allow the server to bind to an address that is already in use