Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2013-08-30 06:30:39 +0000
committerGreg Wilkins2013-08-30 06:30:39 +0000
commitc9ddc8f3455d204ff6cb579b8dd063acf95673fe (patch)
tree38c55f76b1f2841269e1478840d58828af3b95e3
parent5948e8c7c22e44c5ded25db6a827c27ff96d2a81 (diff)
downloadorg.eclipse.jetty.project-c9ddc8f3455d204ff6cb579b8dd063acf95673fe.tar.gz
org.eclipse.jetty.project-c9ddc8f3455d204ff6cb579b8dd063acf95673fe.tar.xz
org.eclipse.jetty.project-c9ddc8f3455d204ff6cb579b8dd063acf95673fe.zip
415826 start.jar replace --enable with --module-ini
Fixed up comments in start.ini
-rw-r--r--jetty-distribution/src/main/resources/start.ini13
1 files changed, 9 insertions, 4 deletions
diff --git a/jetty-distribution/src/main/resources/start.ini b/jetty-distribution/src/main/resources/start.ini
index 01cf21feb8..e760d7a547 100644
--- a/jetty-distribution/src/main/resources/start.ini
+++ b/jetty-distribution/src/main/resources/start.ini
@@ -21,10 +21,15 @@
# + A JVM option like: -Xmx2000m
# + A System Property like: -Dcom.sun.management.jmxremote
#
-# The options --initialize can be used to create a template
-# start.d/module.ini file for defined modules. For example
-# to create an ini template for https use
-# java -jar start.jar --initialize=https
+# The --module-start-ini=module option can be used to append
+# a configuration template for a module to start.ini
+# The --module-ini=module option can be used to creat
+# a configuration template for a module in start.d/module.ini
+# For example configure and run with SPDY use
+#
+# java -jar start.jar --module-ini=spdy
+# $EDITOR start.d/spdy.ini
+# java -jar start.jar
#
#===========================================================

Back to the top