Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2009-03-24 21:07:27 +0000
committerGreg Wilkins2009-03-24 21:07:27 +0000
commitda627b843fe81fa0fe52a046c1be8595630e9ae7 (patch)
tree5dd3804b874cf01be38575a02b5658a02113f78f /jetty-server/src/main/config/etc/jetty-ssl.xml
parentbc1e0bd10201d8a14f20a81e3b93076af6408fe4 (diff)
downloadorg.eclipse.jetty.project-da627b843fe81fa0fe52a046c1be8595630e9ae7.tar.gz
org.eclipse.jetty.project-da627b843fe81fa0fe52a046c1be8595630e9ae7.tar.xz
org.eclipse.jetty.project-da627b843fe81fa0fe52a046c1be8595630e9ae7.zip
jetty @ eclipse initial commit
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@8 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-server/src/main/config/etc/jetty-ssl.xml')
-rw-r--r--jetty-server/src/main/config/etc/jetty-ssl.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/jetty-server/src/main/config/etc/jetty-ssl.xml b/jetty-server/src/main/config/etc/jetty-ssl.xml
new file mode 100644
index 0000000000..ff5e20a419
--- /dev/null
+++ b/jetty-server/src/main/config/etc/jetty-ssl.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.eclipse.org/configure.dtd">
+
+<!-- =============================================================== -->
+<!-- Configure SSL for the Jetty Server -->
+<!-- this configuration file should be used in combination with -->
+<!-- other configuration files. e.g. -->
+<!-- java -jar start.jar etc/jetty.xml etc/jetty-ssl.xml -->
+<!-- =============================================================== -->
+<Configure id="Server" class="org.eclipse.jetty.server.Server">
+
+ <!-- if NIO is not available, use org.eclipse.jetty.server.ssl.SslSocketConnector -->
+
+ <Call name="addConnector">
+ <Arg>
+ <New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
+ <Set name="Port">8443</Set>
+ <Set name="maxIdleTime">30000</Set>
+ <Set name="Acceptors">2</Set>
+ <Set name="AcceptQueueSize">100</Set>
+ <Set name="Keystore"><SystemProperty name="jetty.home" default="." />/etc/keystore</Set>
+ <Set name="Password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
+ <Set name="KeyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
+ <Set name="truststore"><SystemProperty name="jetty.home" default="." />/etc/keystore</Set>
+ <Set name="trustPassword">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
+ </New>
+ </Arg>
+ </Call>
+</Configure>

Back to the top