HttpServerSettings
data class HttpServerSettings(val bindAddress: InetAddress = InetAddress.getLoopbackAddress(), val bindPort: Int = 2010, val contextPath: String = "", val protocol: HttpProtocol = HTTP, val sslSettings: SslSettings? = null, val banner: String? = HttpServer.banner, val zip: Boolean = false)
Holds server settings info.
Constructors
Link copied to clipboard
constructor(bindAddress: InetAddress = InetAddress.getLoopbackAddress(), bindPort: Int = 2010, contextPath: String = "", protocol: HttpProtocol = HTTP, sslSettings: SslSettings? = null, banner: String? = HttpServer.banner, zip: Boolean = false)