1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Remove truststore settings from tutorial sample as they aren't required.

This commit is contained in:
Luke Taylor
2011-06-13 15:03:51 +01:00
parent e4ecdd55f6
commit dc92baa257
+2 -2
View File
@@ -39,8 +39,8 @@ jettyRun {
httpConnector.confidentialPort = 8443
def httpsConnector = new org.mortbay.jetty.security.SslSocketConnector();
httpsConnector.port = 8443
httpsConnector.keystore = httpsConnector.truststore = "$rootDir/samples/certificates/server.jks"
httpsConnector.keyPassword = httpsConnector.trustPassword = 'password'
httpsConnector.keystore = "$rootDir/samples/certificates/server.jks"
httpsConnector.keyPassword = 'password'
connectors = [httpConnector, httpsConnector]
}