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

SEC-647: Created separate "certificates" directory so SSL certificates and keys can be shared between different sample applications. Added key for user "scott" and separate certificate authority pem file (can be installed in a browser).

This commit is contained in:
Luke Taylor
2008-01-27 20:42:10 +00:00
parent 82940db6c8
commit aeba732ba5
7 changed files with 34 additions and 2 deletions
+2 -2
View File
@@ -103,10 +103,10 @@
</connector>
<connector implementation="org.mortbay.jetty.security.SslSocketConnector">
<port>8443</port>
<keystore>server.jks</keystore>
<keystore>../certificates/server.jks</keystore>
<password>password</password>
<keyPassword>password</keyPassword>
<truststore>server.jks</truststore>
<truststore>../certificates/server.jks</truststore>
<trustPassword>password</trustPassword>
<wantClientAuth>true</wantClientAuth>
<needClientAuth>false</needClientAuth>