Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2014-08-29 05:36:19 +0000
committerGreg Wilkins2014-08-29 05:36:19 +0000
commit69390954dc15acc389479b647f290da121ccc9de (patch)
tree2bf0584d27c29566f1cb89d613b04f98ff9c3c0a /jetty-server/src/main/config/modules/http.mod
parenteee2ba206e219a289b8a17e8ef663d7b63e4e4c4 (diff)
downloadorg.eclipse.jetty.project-69390954dc15acc389479b647f290da121ccc9de.tar.gz
org.eclipse.jetty.project-69390954dc15acc389479b647f290da121ccc9de.tar.xz
org.eclipse.jetty.project-69390954dc15acc389479b647f290da121ccc9de.zip
435322 acceptor and selector configuration/priority
Diffstat (limited to 'jetty-server/src/main/config/modules/http.mod')
-rw-r--r--jetty-server/src/main/config/modules/http.mod17
1 files changed, 13 insertions, 4 deletions
diff --git a/jetty-server/src/main/config/modules/http.mod b/jetty-server/src/main/config/modules/http.mod
index 8740af3c7b..dc34bc3cb9 100644
--- a/jetty-server/src/main/config/modules/http.mod
+++ b/jetty-server/src/main/config/modules/http.mod
@@ -9,10 +9,19 @@ server
etc/jetty-http.xml
[ini-template]
-## HTTP Connector Configuration
-# HTTP port to listen on
+### HTTP Connector Configuration
+
+## HTTP port to listen on
jetty.port=8080
-# HTTP idle timeout in milliseconds
+
+## HTTP idle timeout in milliseconds
http.timeout=30000
-# HTTP Socket.soLingerTime in seconds. (-1 to disable)
+
+## HTTP Socket.soLingerTime in seconds. (-1 to disable)
# http.soLingerTime=-1
+
+## Parameters to control the number and priority of acceptors and selectors
+# http.selectors=1
+# http.acceptors=1
+# http.selectorPriorityDelta=0
+# http.acceptorPriorityDelta=0

Back to the top