2
0
Эх сурвалжийг харах

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

Luke Taylor 14 жил өмнө
parent
commit
dc92baa257

+ 2 - 2
samples/tutorial/tutorial.gradle

@@ -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]
 }