Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2013-11-07 15:21:59 +0000
committerSimone Bordet2013-11-07 15:21:59 +0000
commitd9f818bee9f38aed5abd439b6b292376e45da922 (patch)
tree437d21702d64d2d1a78826aa85befebb15e6d412 /jetty-server/src/main/config/etc/jetty-https.xml
parent293efe9798b558b116fb6a9050b88f01609a80f2 (diff)
downloadorg.eclipse.jetty.project-d9f818bee9f38aed5abd439b6b292376e45da922.tar.gz
org.eclipse.jetty.project-d9f818bee9f38aed5abd439b6b292376e45da922.tar.xz
org.eclipse.jetty.project-d9f818bee9f38aed5abd439b6b292376e45da922.zip
Restored default values in XML as failsafe values for idle timeouts,
since "0" means the connection will never timeout.
Diffstat (limited to 'jetty-server/src/main/config/etc/jetty-https.xml')
-rw-r--r--jetty-server/src/main/config/etc/jetty-https.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-server/src/main/config/etc/jetty-https.xml b/jetty-server/src/main/config/etc/jetty-https.xml
index 5a4cf86d23..b5d9a181be 100644
--- a/jetty-server/src/main/config/etc/jetty-https.xml
+++ b/jetty-server/src/main/config/etc/jetty-https.xml
@@ -40,7 +40,7 @@
</Arg>
<Set name="host"><Property name="jetty.host" /></Set>
<Set name="port"><Property name="https.port" default="443" /></Set>
- <Set name="idleTimeout"><Property name="https.timeout" default="0"/></Set>
+ <Set name="idleTimeout"><Property name="https.timeout" default="30000"/></Set>
</New>
</Arg>
</Call>

Back to the top