115 lines
6.5 KiB
XML
115 lines
6.5 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_9_3.dtd">
|
|
|
|
|
|
<!-- =============================================================== -->
|
|
<!-- Configure the Jetty Server -->
|
|
<!-- -->
|
|
<!-- Documentation of this file format can be found at: -->
|
|
<!-- https://www.eclipse.org/jetty/documentation/current/ -->
|
|
<!-- =============================================================== -->
|
|
|
|
<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.HandlerList">
|
|
<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>
|
|
</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">1024</Set>
|
|
</New>
|
|
-->
|
|
<New id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
|
|
<Set name="secureScheme"><Property name="jetty.httpConfig.secureScheme" default="https" /></Set>
|
|
<Set name="securePort"><Property name="jetty.httpConfig.securePort" default="8443" /></Set>
|
|
<Set name="outputBufferSize"><Property name="jetty.httpConfig.outputBufferSize" default="32768" /></Set>
|
|
<Set name="outputAggregationSize"><Property name="jetty.httpConfig.outputAggregationSize" default="8192" /></Set>
|
|
<Set name="requestHeaderSize"><Property name="jetty.httpConfig.requestHeaderSize" default="8192" /></Set>
|
|
<Set name="responseHeaderSize"><Property name="jetty.httpConfig.responseHeaderSize" default="8192" /></Set>
|
|
<Set name="sendServerVersion"><Property name="jetty.httpConfig.sendServerVersion" default="true" /></Set>
|
|
<Set name="sendDateHeader"><Property name="jetty.httpConfig.sendDateHeader" default="false" /></Set>
|
|
<Set name="headerCacheSize"><Property name="jetty.httpConfig.headerCacheSize" default="1024" /></Set>
|
|
<Set name="delayDispatchUntilContent"><Property name="jetty.httpConfig.delayDispatchUntilContent" default="true"/></Set>
|
|
<Set name="maxErrorDispatches"><Property name="jetty.httpConfig.maxErrorDispatches" default="10"/></Set>
|
|
<Set name="persistentConnectionsEnabled"><Property name="jetty.httpConfig.persistentConnectionsEnabled" default="true"/></Set>
|
|
<Set name="requestCookieCompliance"><Call class="org.eclipse.jetty.http.CookieCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.requestCookieCompliance" default="RFC6265"/></Arg></Call></Set>
|
|
<Set name="responseCookieCompliance"><Call class="org.eclipse.jetty.http.CookieCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.responseCookieCompliance" default="RFC6265"/></Arg></Call></Set>
|
|
</New>
|
|
|
|
<!-- =========================================================== -->
|
|
<!-- extra options -->
|
|
<!-- =========================================================== -->
|
|
<Set name="stopAtShutdown"><Property name="jetty.server.stopAtShutdown" default="true"/></Set>
|
|
<Set name="stopTimeout"><Property name="jetty.server.stopTimeout" default="5000"/></Set>
|
|
<Set name="dumpAfterStart"><Property name="jetty.server.dumpAfterStart" default="false"/></Set>
|
|
<Set name="dumpBeforeStop"><Property name="jetty.server.dumpBeforeStop" default="false"/></Set>
|
|
|
|
|
|
<Call class="org.eclipse.jetty.webapp.Configurations" name="setServerDefault">
|
|
<Arg><Ref refid="Server"/></Arg>
|
|
<Call name="add">
|
|
<Arg name="configClass">
|
|
<Array type="String">
|
|
<Item>org.eclipse.jetty.webapp.FragmentConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.JettyWebXmlConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.WebXmlConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.WebAppConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.ServletsConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.JspConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.JaasConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.JndiConfiguration</Item>
|
|
<Item>org.eclipse.jetty.plus.webapp.PlusConfiguration</Item>
|
|
<Item>org.eclipse.jetty.plus.webapp.EnvConfiguration</Item>
|
|
<Item>org.eclipse.jetty.webapp.JmxConfiguration</Item>
|
|
<Item>org.eclipse.jetty.osgi.annotations.AnnotationConfiguration</Item>
|
|
<Item>org.eclipse.jetty.websocket.server.config.JettyWebSocketConfiguration</Item>
|
|
<Item>org.eclipse.jetty.websocket.javax.server.config.JavaxWebSocketConfiguration</Item>
|
|
<Item>org.eclipse.jetty.osgi.boot.OSGiWebInfConfiguration</Item>
|
|
<Item>org.eclipse.jetty.osgi.boot.OSGiMetaInfConfiguration</Item>
|
|
</Array>
|
|
</Arg>
|
|
</Call>
|
|
</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>
|