Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 42de804e8a4c0a2c3d7ed8c23c9e1952f334ca48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">

<Configure id="Server" class="org.eclipse.jetty.server.Server">

    <!-- =========================================================== -->
    <!-- Set connectors                                              -->
    <!-- =========================================================== -->

    <Call name="addConnector">
      <Arg>
          <New class="org.eclipse.jetty.server.ServerConnector">
            <Set name="host"><SystemProperty name="jetty.host" /></Set>
            <Set name="port"><SystemProperty name="jetty.port" default="0"/></Set>
            <Set name="idleTimeout">300000</Set>
            <Set name="Acceptors">2</Set>
            <Set name="statsOn">false</Set>
          </New>
      </Arg>
    </Call>

</Configure>

Back to the top