Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2013-08-06 16:20:02 +0000
committerJoakim Erdfelt2013-08-06 16:20:02 +0000
commit12f68539006357eefa51569b236778d76f311875 (patch)
tree60ca08f6a759a7e863170bc004e694d68fce1391 /jetty-distribution/src
parent2354ad4c3dddfab9c1c48fe26d44aa0fc4fc9ada (diff)
downloadorg.eclipse.jetty.project-12f68539006357eefa51569b236778d76f311875.tar.gz
org.eclipse.jetty.project-12f68539006357eefa51569b236778d76f311875.tar.xz
org.eclipse.jetty.project-12f68539006357eefa51569b236778d76f311875.zip
WebSocket - enabling WebSocket on distribution
Diffstat (limited to 'jetty-distribution/src')
-rw-r--r--jetty-distribution/src/main/resources/start.ini11
1 files changed, 10 insertions, 1 deletions
diff --git a/jetty-distribution/src/main/resources/start.ini b/jetty-distribution/src/main/resources/start.ini
index 3d7646db81..9b72813420 100644
--- a/jetty-distribution/src/main/resources/start.ini
+++ b/jetty-distribution/src/main/resources/start.ini
@@ -69,7 +69,7 @@
# Add jars discovered in lib/ext to the classpath
# Include the core jetty configuration file
#-----------------------------------------------------------
-OPTIONS=Server,websocket,resources,ext
+OPTIONS=Server,resources,ext
threads.min=10
threads.max=200
threads.timeout=60000
@@ -80,6 +80,15 @@ jetty.dump.stop=false
etc/jetty.xml
#===========================================================
+# WebSocket Support
+# To enable websocket server support (both apis)
+# org.eclipse.jetty.websocket.api (API)
+# javax.websocket (API)
+#-----------------------------------------------------------
+OPTIONS=websocket
+etc/jetty-websockets.xml
+
+#===========================================================
# JMX Management
# To enable remote JMX access uncomment jmxremote and
# enable --exec

Back to the top