96 lines
4.0 KiB
XML
96 lines
4.0 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
|
|
|
|
|
|
<!-- =============================================================== -->
|
|
<!-- Configure the Jetty Server -->
|
|
<!-- -->
|
|
<!-- Documentation of this file format can be found at: -->
|
|
<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax -->
|
|
<!-- =============================================================== -->
|
|
|
|
<Configure id="Server" class="org.eclipse.jetty.server.Server">
|
|
|
|
<!-- =========================================================== -->
|
|
<!-- Server Thread Pool -->
|
|
<!-- =========================================================== -->
|
|
<Get name="ThreadPool">
|
|
<Set name="minThreads">10</Set>
|
|
<Set name="maxThreads">200</Set>
|
|
</Get>
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
<!-- Set handler Collection Structure -->
|
|
<!-- =========================================================== -->
|
|
<Set name="handler">
|
|
<New id="Handlers" class="org.eclipse.jetty.server.handler.HandlerCollection">
|
|
<Set name="handlers">
|
|
<Array type="org.eclipse.jetty.server.Handler">
|
|
<Item>
|
|
<New id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection"/>
|
|
</Item>
|
|
<Item>
|
|
<New id="DefaultHandler" class="org.eclipse.jetty.server.handler.DefaultHandler"/>
|
|
</Item>
|
|
<Item>
|
|
<New id="RequestLog" class="org.eclipse.jetty.server.handler.RequestLogHandler"/>
|
|
</Item>
|
|
</Array>
|
|
</Set>
|
|
</New>
|
|
</Set>
|
|
|
|
<New id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
|
|
<Set name="secureScheme">https</Set>
|
|
<Set name="securePort"><Property name="jetty.httpConfig.securePort" default="8443" /></Set>
|
|
<Set name="outputBufferSize">32768</Set>
|
|
<Set name="requestHeaderSize">8192</Set>
|
|
<Set name="responseHeaderSize">8192</Set>
|
|
<Set name="sendServerVersion">true</Set>
|
|
<Set name="sendDateHeader">false</Set>
|
|
<Set name="headerCacheSize">512</Set>
|
|
</New>
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
<!-- extra options -->
|
|
<!-- =========================================================== -->
|
|
<Set name="stopAtShutdown">true</Set>
|
|
<Set name="stopTimeout">1000</Set>
|
|
<Set name="dumpAfterStart">false</Set>
|
|
<Set name="dumpBeforeStop">false</Set>
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
<!-- Set up the list of default configuration classes -->
|
|
<!-- =========================================================== -->
|
|
<Call name="setAttribute">
|
|
<Arg>org.eclipse.jetty.webapp.configuration</Arg>
|
|
<Arg>
|
|
<New class="org.eclipse.jetty.webapp.Configuration$ClassList">
|
|
<Arg>
|
|
<Array type="String">
|
|
<Item>org.eclipse.jetty.osgi.boot.OSGiWebInfConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.WebXmlConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.MetaInfConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.FragmentConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.JettyWebXmlConfiguration</Item>
|
|
</Array>
|
|
</Arg>
|
|
</New>
|
|
</Arg>
|
|
</Call>
|
|
|
|
|
|
<Call class="java.lang.System" name="setProperty">
|
|
<Arg>java.naming.factory.initial</Arg>
|
|
<Arg><Property name="java.naming.factory.initial" default="org.eclipse.jetty.jndi.InitialContextFactory"/></Arg>
|
|
</Call>
|
|
<Call class="java.lang.System" name="setProperty">
|
|
<Arg>java.naming.factory.url.pkgs</Arg>
|
|
<Arg><Property name="java.naming.factory.url.pkgs" default="org.eclipse.jetty.jndi"/></Arg>
|
|
</Call>
|
|
|
|
</Configure>
|