All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ngframework.hframe-webcore.1.0.source-code.jetty.xml Maven / Gradle / Ivy

<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">

<!-- =============================================================== -->
<!-- Configure the Jetty Server                                      -->
<!--                                                                 -->
<!-- Documentation of this file format can be found at:              -->
<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax        -->
<!--                                                                 -->
<!-- Additional configuration files are available in $JETTY_HOME/etc -->
<!-- and can be mixed in.  For example:                              -->
<!--   java -jar start.jar etc/jetty.xml etc/jetty-ssl.xml           -->
<!--                                                                 -->
<!-- See start.ini file for the default configuraton files           -->
<!-- =============================================================== -->


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

    <!-- =========================================================== -->
    <!-- Server Thread Pool                                          -->
    <!-- =========================================================== -->
    <Set name="ThreadPool">
      <!-- Default queued blocking threadpool -->
      <New class="org.eclipse.jetty.util.thread.QueuedThreadPool">
        <Set name="minThreads">1</Set>
        <Set name="maxThreads">250</Set>
      </New>
    </Set>

    <!-- =========================================================== -->
    <!-- Set connectors                                              -->
    <!-- =========================================================== -->
    <!--
    <Call name="addConnector">
      <Arg>
          <New class="org.eclipse.jetty.server.bio.SocketConnector">
            <Set name="port"><SystemProperty name="otter.port" default="8080" /></Set>
            <Set name="forwarded">true</Set>
            <Set name="forwardedHostHeader">ignore</Set>
            <Set name="forwardedServerHeader">ignore</Set>
            <Set name="acceptQueueSize">256</Set>
            <Set name="statsOn">false</Set>
            <Set name="maxIdleTime">600000</Set>
            <Set name="lowResourcesMaxIdleTime">5000</Set>
            <Set name="requestHeaderSize">8192</Set>
			<Set name="responseHeaderSize">8192</Set>
          </New>
      </Arg>
    </Call>
     -->
    <Call name="addConnector">
      <Arg>
          <New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
            <Set name="port"><SystemProperty name="hframe.port" default="8080" /></Set>
            <Set name="forwarded">true</Set>
            <Set name="forwardedHostHeader">ignore</Set>
            <Set name="forwardedServerHeader">ignore</Set>
            <Set name="maxIdleTime">600000</Set>
            <Set name="Acceptors">2</Set>
            <Set name="acceptQueueSize">256</Set>
            <Set name="statsOn">false</Set>
            <Set name="confidentialPort">8443</Set>
            <Set name="lowResourcesConnections">2000</Set>
            <Set name="lowResourcesMaxIdleTime">5000</Set>
            <Set name="requestHeaderSize">8192</Set>
			<Set name="responseHeaderSize">8192</Set>
          </New>
      </Arg>
    </Call>
    <!-- =========================================================== -->
    <!-- Set handler Collection Structure                            -->
    <!-- =========================================================== -->
    <Set name="handler">
		<New id="WebAppContext" class="org.eclipse.jetty.webapp.WebAppContext">
		   	<Set name="contextPath">/</Set>
		   	<Set name="parentLoaderPriority">true</Set>
		   	<Set name="resourceBase">webapp</Set>
		</New>
	</Set>

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy