blob: 8e33bfc34103b6ce99078c9dedce934dc2fdbbe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/files/5.5/tomcat.conf.2,v 1.2 2007/05/20 23:24:56 wltjr Exp $
# JVM Runtime
# Using the default setting, it will determine your JVM from the system-vm
# set using java-config.
# See java-config(1) manual page for assistance in determining this value.
#
# You can override this value with whatever path you wish.
# Example: GENTOO_VM="sun-jdk-1.5"
#GENTOO_VM="sun-jdk-1.5"
# (Optional) Java runtime options used when the "start", "stop", or "run"
# commands are executed.
# Example to set library path for tomcat-native
# JAVA_OPTS="-Djava.library.path=/usr/lib"
# JAVA_OPTS=""
# Where your web applications are located
CATALINA_HOME=/usr/share/tomcat-5.5/
CATALINA_BASE=/var/lib/tomcat-5.5/
# Tomcat's User/Group
# Change these at your own risk!!! These are not supported so if it
# breaks something, you are on your own.
CATALINA_USER=tomcat
CATALINA_GROUP=tomcat
# Location of the Tomcat JARs and classes
CATALINA_LIBDIR=/usr/share/tomcat-5.5/server/lib/
# The CLASSPATH for Tomcat to use, plus any others you need.
CLASSPATH=${CATALINA_LIBDIR}
# (Optional) Directory path location of temporary directory the JVM should
# use (java.io.tmpdir). Defaults to $CATALINA_BASE/temp.
CATALINA_TMPDIR="/var/tmp/tomcat-5.5/"
# TOMCAT STARTUP/SHUTDOWN
# debug Start Catalina in a debugger
# -security debug Debug Catalina with a security manager
# jpda start Start Catalina under JPDA debugger
# start Start Catalina in a separate window
# -security start Start in a separate window with security manager
# stop Stop Catalina"
#
# NOTE: -security requires JSSE (see below)
# NOTE: jpda requires JPDA (see below)
TOMCAT_START="start"
TOMCAT_STOP="stop"
# (Optional) Java runtime options used when the "start", "stop", or "run"
# commands are executed.
# CATALINA_OPTS=""
# Java Platform Debugger Architecture (JPDA)
# http://java.sun.com/products/jpda/
# Included with Java SDK 1.3 and later. No need to specify location.
#
# JPDA_TRANSPORT (Optional) JPDA transport used when the "jpda start"
# command is executed. The default is "dt_socket".
#
# JPDA_ADDRESS (Optional) Java runtime options used when the "jpda start"
# command is executed. The default is 8000.
#
# JPDA_TRANSPORT="dt_socket"
# JPDA_ADDRESS="8000"
# Java Secure Socket Extension (JSSE)
# http://java.sun.com/products/jsse/
# Included with Java SDK 1.4 and later.
#
# JSSE_HOME (Optional) May point at your Java Secure Sockets Extension
# (JSSE) installation, whose JAR files will be added to the
# system class path used to start Tomcat.
#
# JSSE_HOME="/opt/sun-jdk-1.4.1.02/jre/lib/"
|