Browse Source

SEC-647: Updated server keystore (new certificate using our own Test CA) and added client certificates for users rod and dianne.

2.0.x
Luke Taylor 18 years ago
parent
commit
e44e641106
  1. BIN
      samples/tutorial/dianne.p12
  2. BIN
      samples/tutorial/keystore
  3. 24
      samples/tutorial/pom.xml
  4. BIN
      samples/tutorial/rod.p12
  5. BIN
      samples/tutorial/server.jks

BIN
samples/tutorial/dianne.p12

Binary file not shown.

BIN
samples/tutorial/keystore

Binary file not shown.

24
samples/tutorial/pom.xml

@ -82,18 +82,18 @@ @@ -82,18 +82,18 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.5</version>
<version>6.1.7</version>
<configuration>
<contextPath>/tutorial</contextPath>
<connectors>
@ -103,9 +103,13 @@ @@ -103,9 +103,13 @@
</connector>
<connector implementation="org.mortbay.jetty.security.SslSocketConnector">
<port>8443</port>
<keystore>keystore</keystore>
<keystore>server.jks</keystore>
<password>password</password>
<keyPassword>password</keyPassword>
<truststore>server.jks</truststore>
<trustPassword>password</trustPassword>
<wantClientAuth>true</wantClientAuth>
<needClientAuth>false</needClientAuth>
</connector>
</connectors>
</configuration>

BIN
samples/tutorial/rod.p12

Binary file not shown.

BIN
samples/tutorial/server.jks

Binary file not shown.
Loading…
Cancel
Save