Blame SOURCES/tomcat-9.0.conf

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