27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?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">
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
<!-- Add connector -->
|
|
<!-- =========================================================== -->
|
|
|
|
<Call name="addConnector">
|
|
<Arg>
|
|
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
|
|
<Set name="host"><Property name="jetty.host" /></Set>
|
|
<Set name="port"><Property name="jetty.port" default="8080"/></Set>
|
|
<Set name="maxIdleTime">300000</Set>
|
|
<Set name="Acceptors">2</Set>
|
|
<Set name="statsOn">false</Set>
|
|
<Set name="confidentialPort">8443</Set>
|
|
<Set name="lowResourcesConnections">20000</Set>
|
|
<Set name="lowResourcesMaxIdleTime">5000</Set>
|
|
</New>
|
|
</Arg>
|
|
</Call>
|
|
|
|
</Configure>
|