~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to extras/sslengine/src/main/config/etc/jetty-sslengine.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2009-08-09 08:48:10 UTC
  • Revision ID: james.westby@ubuntu.com-20090809084810-k522b97ind2robyd
ImportĀ upstreamĀ versionĀ 6.1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/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.xml etc/jetty-ssl.xml          -->
 
9
<!-- =============================================================== -->
 
10
<Configure id="Server" class="org.mortbay.jetty.Server">
 
11
  <Call name="addConnector">
 
12
    <Arg>
 
13
      <New class="org.mortbay.jetty.security.SslSelectChannelConnector">
 
14
        <Set name="Port">8444</Set>
 
15
        <Set name="maxIdleTime">30000</Set>
 
16
        <Set name="Acceptors">2</Set>
 
17
        <Set name="AcceptQueueSize">100</Set>
 
18
        <Set name="Keystore"><SystemProperty name="jetty.home" default="." />/etc/keystore</Set>
 
19
        <Set name="Password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
 
20
        <Set name="KeyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
 
21
      </New>
 
22
    </Arg>
 
23
  </Call>
 
24
        
 
25
</Configure>