9a9096
# System-wide configuration file for tomcat services
9a9096
# This will be loaded by systemd as an environment file,
9a9096
# so please keep the syntax. For shell expansion support
9a9096
# place your custom files as /etc/tomcat/conf.d/*.conf
9a9096
#
9a9096
# There are 2 "classes" of startup behavior in this package.
9a9096
# The old one, the default service named tomcat.service.
9a9096
# The new named instances are called tomcat@instance.service.
9a9096
#
9a9096
# Use this file to change default values for all services.
9a9096
# Change the service specific ones to affect only one service.
9a9096
# For tomcat.service it's /etc/sysconfig/tomcat, for
9a9096
# tomcat@instance it's /etc/sysconfig/tomcat@instance.
9a9096
9a9096
# This variable is used to figure out if config is loaded or not.
9a9096
TOMCAT_CFG_LOADED="1"
9a9096
9a9096
# In new-style instances, if CATALINA_BASE isn't specified, it will
9a9096
# be constructed by joining TOMCATS_BASE and NAME.
9a9096
TOMCATS_BASE="/var/lib/tomcats/"
9a9096
9a9096
# Where your java installation lives
9a9096
JAVA_HOME="/usr/lib/jvm/jre"
9a9096
9a9096
# Where your tomcat installation lives
9a9096
CATALINA_HOME="@@@TCHOME@@@"
9a9096
9a9096
# System-wide tmp
9a9096
CATALINA_TMPDIR="/var/cache/tomcat/temp"
9a9096
9a9096
# You can pass some parameters to java here if you wish to
9a9096
#JAVA_OPTS="-Xminf0.1 -Xmaxf0.3"
9a9096
9a9096
# Use JAVA_OPTS to set java.library.path for libtcnative.so
9a9096
#JAVA_OPTS="-Djava.library.path=/usr/lib"
9a9096
9a9096
# You can change your tomcat locale here
9a9096
#LANG="en_US"
9a9096
9a9096
# Run tomcat under the Java Security Manager
9a9096
SECURITY_MANAGER="false"
9a9096
9a9096
# SHUTDOWN_WAIT has been deprecated. To change the shutdown wait time, set
9a9096
# TimeoutStopSec in tomcat.service.
9a9096
9a9096
# If you wish to further customize your tomcat environment,
9a9096
# put your own definitions here
9a9096
# (i.e. LD_LIBRARY_PATH for some jdbc drivers)