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