• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0"?>
2<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
3
4<!-- =============================================================== -->
5<!-- Configure SSL for the Jetty Server                              -->
6<!-- this configuration file should be used in combination with      -->
7<!-- other configuration files.  e.g.                                -->
8<!--    java -jar start.jar etc/jetty-ssl.xml                        -->
9<!-- =============================================================== -->
10<Configure id="Server" class="org.eclipse.jetty.server.Server">
11
12  <Call name="addConnector">
13    <Arg>
14      <New class="org.eclipse.jetty.server.ssl.SslSocketConnector">
15	<Set name="Port">9443</Set>
16	<Set name="maxIdleTime">30000</Set>
17	<Set name="Keystore"><Property name="jetty.home" default="." />/etc/keystore</Set>
18	<Set name="Password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
19	<Set name="KeyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
20        <Set name="truststore"><Property name="jetty.home" default="." />/etc/keystore</Set>
21        <Set name="trustPassword">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
22      </New>
23    </Arg>
24  </Call>
25</Configure>
26