initial commit
This commit is contained in:
parent
cee3efab31
commit
71219733bd
31 changed files with 9242 additions and 0 deletions
16
WEB-INF/jetty.xml
Normal file
16
WEB-INF/jetty.xml
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
|
||||
<Configure id="Server" class="org.eclipse.jetty.server.Server">
|
||||
<!-- Default connector. The Jetty stop port can be specified
|
||||
in the .basex or pom.xml configuration file. -->
|
||||
<Call name="addConnector">
|
||||
<Arg>
|
||||
<New class="org.eclipse.jetty.server.ServerConnector">
|
||||
<Arg name="server"><Ref refid="Server"/></Arg>
|
||||
<Set name="host">0.0.0.0</Set>
|
||||
<Set name="port">8080</Set>
|
||||
<Set name="idleTimeout">60000</Set>
|
||||
<Set name="reuseAddress">true</Set>
|
||||
</New>
|
||||
</Arg>
|
||||
</Call>
|
||||
</Configure>
|
Loading…
Add table
Add a link
Reference in a new issue