From c2f8201aed1dda23477d6e57592c74d44401e9a1 Mon Sep 17 00:00:00 2001 From: Greg Wilkins Date: Sat, 16 May 2009 00:43:45 +0000 Subject: [PATCH] doco git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@218 7e9141cc-0065-0410-87d8-b60c137991c4 --- README.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.txt b/README.txt index 049bb04820d..18e5442db13 100644 --- a/README.txt +++ b/README.txt @@ -30,3 +30,33 @@ version: mvn install + + +RUNNING JETTY +============= + +The run directory is either the top-level of a binary release +or jetty-distribution/target/assembly-prep directory when built from +source. + +To run with the default options: + + java -jar start.jar + +To run with specific configuration file(s) + + java -jar start.jar etc/jetty.xml + +To see the available options + + java -jar start.jar --info + +To run with JSP support + + java -DOPTIONS=Server,deploy,jsp -jar start.jar + +To run with JMX support + + java -DOPTIONS=Server,deploy,jmx -jar start.jar etc/jetty-jmx.xml etc/jetty.xml + +