ApplicationSslConfiguration

data class ApplicationSslConfiguration(val certificate: String, val chain: String? = null, val privateKey: String)

Constructors

Link copied to clipboard
constructor(certificate: String, chain: String? = null, privateKey: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The contents of the certificate's domain.crt file.

Link copied to clipboard
val chain: String? = null

Can be used to specify an intermediate certificate authority key or client authentication.

Link copied to clipboard

The private key; the contents of the certificate's domain.key file.