1
0
mirror of synced 2026-08-06 10:18:52 +00:00

Added SSL support to the tutorial app Jetty plugin configuration and added a requirement for SSL on the "extremely secure" page.

This commit is contained in:
Luke Taylor
2008-01-24 16:30:06 +00:00
parent d10450cfb7
commit b85f76e6c1
4 changed files with 19 additions and 1 deletions
+12
View File
@@ -96,6 +96,18 @@
<version>6.1.5</version>
<configuration>
<contextPath>/tutorial</contextPath>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8080</port>
<confidentialPort>8443</confidentialPort>
</connector>
<connector implementation="org.mortbay.jetty.security.SslSocketConnector">
<port>8443</port>
<keystore>keystore</keystore>
<password>password</password>
<keyPassword>password</keyPassword>
</connector>
</connectors>
</configuration>
</plugin>
</plugins>