Update JettyCasService
Align with changes to Jetty's SslContextFactory Issue gh-7874
This commit is contained in:
parent
50d8200348
commit
df8feb8919
|
@ -66,7 +66,7 @@ class JettyCasService extends Server {
|
||||||
String password = System.getProperty('javax.net.ssl.trustStorePassword','password')
|
String password = System.getProperty('javax.net.ssl.trustStorePassword','password')
|
||||||
|
|
||||||
|
|
||||||
SslContextFactory sslContextFactory = new SslContextFactory();
|
SslContextFactory sslContextFactory = new SslContextFactory.Server();
|
||||||
sslContextFactory.setKeyStorePath(getTrustStore());
|
sslContextFactory.setKeyStorePath(getTrustStore());
|
||||||
sslContextFactory.setKeyStorePassword(password);
|
sslContextFactory.setKeyStorePassword(password);
|
||||||
sslContextFactory.setKeyManagerPassword(password);
|
sslContextFactory.setKeyManagerPassword(password);
|
||||||
|
|
Loading…
Reference in New Issue