mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-24 08:28:54 +00:00
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1145 7e9141cc-0065-0410-87d8-b60c137991c4
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/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">
|
|
|
|
<Call name="addConnector">
|
|
<Arg>
|
|
<New class="org.eclipse.jetty.server.ssl.SslSocketConnector">
|
|
<Set name="Port">9443</Set>
|
|
<Set name="maxIdleTime">30000</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>
|