Kaynağa Gözat

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

Luke Taylor 14 yıl önce
ebeveyn
işleme
dc92baa257
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      samples/tutorial/tutorial.gradle

+ 2 - 2
samples/tutorial/tutorial.gradle

@@ -39,8 +39,8 @@ jettyRun {
     httpConnector.confidentialPort = 8443
     httpConnector.confidentialPort = 8443
     def httpsConnector = new org.mortbay.jetty.security.SslSocketConnector();
     def httpsConnector = new org.mortbay.jetty.security.SslSocketConnector();
     httpsConnector.port = 8443
     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]
     connectors = [httpConnector, httpsConnector]
 }
 }