Created
August 4, 2012 19:09
-
-
Save anonymous/3259403 to your computer and use it in GitHub Desktop.
/etc/conf.d/tomcat7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The JAVA_HOME of the JVM for Tomcat to use | |
# (compulsory to enable tomcat to start at boot) | |
TOMCAT_JAVA_HOME=/usr/lib/jvm/java-6-openjdk \ | |
# Tomcat home directory | |
CATALINA_HOME=/usr/share/tomcat7 | |
# In many circumstances, it is desirable to have a single copy of a Tomcat | |
# binary distribution shared among multiple users on the same server. To make | |
# this possible, you can set the $CATALINA_BASE environment variable to the | |
# directory that contains the files for your 'personal' Tomcat instance. | |
CATALINA_BASE=${CATALINA_HOME} | |
# Tomcat additional commandline options | |
CATALINA_OPTS= |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment