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

<!-- =============================================================== -->
<!-- Configure the Nested Jetty Server                               -->
<!-- =============================================================== -->

<Configure id="Server" class="org.eclipse.jetty.server.Server">
    <!-- =========================================================== -->
    <!-- Set connectors                                              -->
    <!-- =========================================================== -->
    <Call name="addConnector">
      <Arg>
          <New class="org.eclipse.jetty.nested.NestedConnector">
            <Set name="statsOn">false</Set>
            <Set name="confidentialPort">8443</Set>
          </New>
      </Arg>
    </Call>

    <!-- =========================================================== -->
    <!-- extra options                                               -->
    <!-- =========================================================== -->
    <Set name="stopAtShutdown">true</Set>
    <Set name="sendServerVersion">true</Set>
    <Set name="sendDateHeader">true</Set>
    <Set name="gracefulShutdown">1000</Set>
    <Set name="dumpAfterStart">true</Set>
    <Set name="dumpBeforeStop">false</Set>

</Configure>

Back to the top