* i2ptunnel: Reduce buffer size and use cache in HTTPServer

* Jetty: Increase maxIdleTime
This commit is contained in:
zzz
2013-09-04 00:46:43 +00:00
parent 42bc4bb1f4
commit 0859dbe57f
5 changed files with 26 additions and 7 deletions

View File

@@ -26,7 +26,7 @@
<New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
<Arg><Ref id="sslContextFactory" /></Arg>
<Set name="Port">8443</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="maxIdleTime">600000</Set>
<Set name="useDirectBuffers">false</Set>
<Set name="Acceptors">2</Set>
<Set name="AcceptQueueSize">100</Set>

View File

@@ -105,7 +105,7 @@
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
<Set name="host">127.0.0.1</Set>
<Set name="port">7658</Set>
<Set name="maxIdleTime">60000</Set>
<Set name="maxIdleTime">600000</Set>
<Set name="Acceptors">1</Set>
<Set name="statsOn">false</Set>
<Set name="confidentialPort">8443</Set>
@@ -125,7 +125,7 @@
<New class="org.eclipse.jetty.server.bio.SocketConnector">
<Set name="host">127.0.0.1</Set>
<Set name="port">7658</Set>
<Set name="maxIdleTime">60000</Set>
<Set name="maxIdleTime">600000</Set>
<Set name="Acceptors">1</Set>
<Set name="statsOn">false</Set>
<Set name="confidentialPort">8443</Set>