package
webserver
Type Members
-
case class
HttpConfig
(maxLengthInMB: Int, maxInitialLineLength: Int, maxHeaderSizeInBytes: Int, maxChunkSizeInBytes: Int, aggreateChunks: Boolean) extends Product with Serializable
-
class
PipelineFactory
extends ChannelPipelineFactory
-
class
RequestHandler
extends SimpleChannelUpstreamHandler with Logger
-
case class
SslConfig
(keyStoreFile: File, keyStorePassword: String, trustStoreFile: Option[File], trustStorePassword: Option[String]) extends Product with Serializable
-
class
SslManager
extends AnyRef
-
class
WebServer
extends Logger
-
case class
WebServerConfig
(serverName: String, hostname: String, port: Int, sslConfig: Option[SslConfig], httpConfig: HttpConfig) extends Extension with Product with Serializable
Web server built on top of Netty.