Jetty HTTPS server connector. Here is the list of additional parameters that
are supported:
Parameter name
Value type
Default value
Description
keystorePath
String
${user.home}/.keystore
SSL keystore path.
keystorePassword
String
SSL keystore password.
keystoreType
String
JKS
SSL keystore type
keyPassword
String
SSL key password.
certAlgorithm
String
SunX509
SSL certificate algorithm.
sslProtocol
String
TLS
SSL protocol.
secureRandomAlgorithm
String
null (see java.security.SecureRandom)
Name of the RNG algorithm. (see java.security.SecureRandom class).
securityProvider
String
null (see javax.net.ssl.SSLContext)
Java security provider name (see java.security.Provider class).
needClientAuthentication
boolean
false
Indicates if we require client certificate authentication.
wantClientAuthentication
boolean
false
Indicates if we would like client certificate authentication (only for
the BIO connector type).
type
int
2
The type of Jetty connector to use. 1 : Selecting NIO connector
(Jetty's SslSelectChannelConnector class). 2 : Blocking BIO connector
(Jetty's SslSocketConnector class).