aboutsummaryrefslogtreecommitdiff
path: root/www/jetty/pkg-message
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-09-02 14:42:20 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-09-02 14:42:20 +0000
commitf7c47523107ff8fcdd94d21c8189f15407c4df63 (patch)
treeb03b8465efec9a08c9f6b7cec824641fa436f61f /www/jetty/pkg-message
parente1bc5eaa751b81e98787501e581409556ee7dbf5 (diff)
Notes
Diffstat (limited to 'www/jetty/pkg-message')
-rw-r--r--www/jetty/pkg-message35
1 files changed, 35 insertions, 0 deletions
diff --git a/www/jetty/pkg-message b/www/jetty/pkg-message
new file mode 100644
index 000000000000..e0a9e3930ba7
--- /dev/null
+++ b/www/jetty/pkg-message
@@ -0,0 +1,35 @@
+
+- The environment variable JETTY_HOME should be set to the installation
+ directory. Typically :
+
+ JETTY_HOME=%%PREFIX%%/share/java/jetty
+ export JETTY_HOME
+
+- Make sure your CLASSPATH includes all the jar files in the $JETTY_HOME/lib
+ directory :
+
+ CLASSPATH=$CLASSPATH:$JETTY_HOME/lib/javax.servlet.jar
+ CLASSPATH=$CLASSPATH:$JETTY_HOME/lib/com.mortbay.Jetty.jar
+ CLASSPATH=$CLASSPATH:$JETTY_HOME/lib/gnujsp.jar
+ export CLASSPATH
+
+ The jsse.jar, jnet.jar and jcert.jar are only required if you
+ intend to run or compile the SSL classes.
+
+- Running the Demo :
+
+ The demonstration server has relative paths configured, so
+ it must be run from the $JETTY_HOME directory. Users should
+ consider using absolute file path names in their configurations
+ if they wish to run Jetty from any directory.
+
+ The demo server can be run with the following commands:
+
+ cd $JETTY_HOME
+ javavm com.mortbay.Jetty.Demo
+
+ Use a browser to access the Jetty demo site at:
+
+ http://hostname:8080
+ or
+ http://127.0.0.1:8080 (if the browser is running on the same machine)