forked from I2P_Developers/i2p.i2p
- Uncomment eepsite concurrent ThreadPool and fix arguments - Reduce eepsite acceptors to 1 - Add jetty-ssl.xml example - jetty.xml cleanup
36 lines
1.5 KiB
XML
36 lines
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
|
|
|
|
<!-- =============================================================== -->
|
|
<!-- Configure SSL for the Jetty Server -->
|
|
<!-- this configuration file should be used in combination with -->
|
|
<!-- other configuration files. e.g. -->
|
|
<!-- java -jar start.jar etc/jetty.xml etc/jetty-ssl.xml -->
|
|
<!-- =============================================================== -->
|
|
<Configure id="Server" class="org.mortbay.jetty.Server">
|
|
|
|
|
|
|
|
<Call name="addConnector">
|
|
<Arg>
|
|
<New class="org.mortbay.jetty.security.SslSocketConnector">
|
|
<Set name="Port">8443</Set>
|
|
<Set name="maxIdleTime">30000</Set>
|
|
<Set name="handshakeTimeout">2000</Set>
|
|
<Set name="keystore">./eepsite/etc/keystore.ks</Set>
|
|
<Set name="password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
|
|
<Set name="keyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
|
|
<Set name="truststore">./eepsite/etc/keystore.ks</Set>
|
|
<Set name="trustPassword">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
|
|
<Set name="handshakeTimeout">2000</Set>
|
|
<!-- Set name="ThreadPool">
|
|
<New class="org.mortbay.thread.QueuedThreadPool">
|
|
<Set name="minThreads">0</Set>
|
|
<Set name="maxThreads">16</Set>
|
|
</New>
|
|
</Set -->
|
|
</New>
|
|
</Arg>
|
|
</Call>
|
|
</Configure>
|