-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from myii/feat/support-new-platforms
feat: support new platforms (`ubuntu-20.04` & `fedora-32`)
- Loading branch information
Showing
10 changed files
with
446 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# This file is managed by salt. Manual changes risk being overwritten. | ||
# # Modify the values passed to the tomcat pillar instead. | ||
|
||
# Service-specific configuration file for tomcat. This will be sourced by | ||
# the SysV init script after the global configuration file | ||
# /etc/tomcat/tomcat.conf, thus allowing values to be overridden in | ||
# a per-service manner. | ||
# | ||
# NEVER change the init script itself. To change values for all services make | ||
# your changes in /etc/tomcat/tomcat.conf | ||
# | ||
# To change values for a specific service make your edits here. | ||
# To create a new service create a link from /etc/init.d/<your new service> to | ||
# /etc/init.d/tomcat (do not copy the init script) and make a copy of the | ||
# /etc/sysconfig/tomcat file to /etc/sysconfig/<your new service> and change | ||
# the property values so the two services won't conflict. Register the new | ||
# service in the system as usual (see chkconfig and similars). | ||
# | ||
|
||
# Where your java installation lives | ||
JAVA_HOME=/usr/lib/jvm/jre | ||
|
||
CATALINA_BASE="/usr/share/tomcat" | ||
|
||
CATALINA_HOME="/usr/share/tomcat" | ||
|
||
CATALINA_TMPDIR="/var/cache/tomcat/temp" | ||
|
||
CATALINA_PID="/var/run/tomcat.pid" | ||
|
||
|
||
# You can pass some parameters to java here if you wish to | ||
#JAVA_OPTS="-Xminf0.1 -Xmaxf0.3" | ||
JAVA_OPTS="-Djava.awt.headless=true -Xmx128m -XX:MaxPermSize=256m -Dlog4j.configuration=file:/tmp/log4j.properties -Dlogback.configurationFile=/tmp/logback.xml" | ||
|
||
#if CLASSPATH is defined in JAVA_OPTS it may no longer munge with the default CLASSPATH | ||
#replace and customize if necessary | ||
#CLASSPATH=/usr/share/tomcat/bin/bootstrap.jar:/usr/share/tomcat/bin/tomcat-juli.jar:/usr/share/java/commons-daemon.jar | ||
|
||
# Use JAVA_OPTS to set java.library.path for libtcnative.so | ||
#JAVA_OPTS="-Djava.library.path=/usr/lib64" | ||
|
||
# What user should run tomcat | ||
TOMCAT_USER=tomcat | ||
|
||
# What group should run tomcat | ||
TOMCAT_GROUP=tomcat | ||
|
||
# You can change your tomcat locale here | ||
#LANG="en_US" | ||
|
||
# Run tomcat under the Java Security Manager | ||
SECURITY_MANAGER="false" | ||
|
||
|
||
# Time to wait in seconds, before killing process | ||
#SHUTDOWN_WAIT="30" | ||
|
||
# Whether to annoy the user with "attempting to shut down" messages or not | ||
#SHUTDOWN_VERBOSE="false" | ||
|
||
# Connector port is 8080 for this tomcat instance | ||
#CONNECTOR_PORT="8080" | ||
|
||
# If you wish to further customize your tomcat environment, | ||
# put your own definitions here | ||
# (i.e. LD_LIBRARY_PATH for some jdbc drivers) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# This file is managed by salt. Manual changes risk being overwritten. | ||
# Modify the values in the tomcat pillar instead. | ||
|
||
# Run Tomcat as this user ID. Not setting this or leaving it blank will use the | ||
# default of tomcat8. | ||
TOMCAT9_USER=tomcat | ||
|
||
# Run Tomcat as this group ID. Not setting this or leaving it blank will use | ||
# the default of tomcat8. | ||
TOMCAT9_GROUP=tomcat | ||
|
||
# The home directory of the Java development kit (JDK). You need at least | ||
# JDK version 7. If JAVA_HOME is not set, some common directories for | ||
# OpenJDK and the Oracle JDK are tried. | ||
JAVA_HOME=/usr/lib/jvm/default-java | ||
|
||
CATALINA_BASE="/var/lib/tomcat9" | ||
CATALINA_HOME="/usr/share/tomcat9" | ||
CATALINA_TMPDIR="/var/cache/tomcat9/temp" | ||
CATALINA_PID="/var/run/tomcat9.pid" | ||
|
||
|
||
# You may pass JVM startup parameters to Java here. If unset, the default | ||
# options will be: -Djava.awt.headless=true -Xmx128m -XX:+UseConcMarkSweepGC | ||
# | ||
# Use "-XX:+UseConcMarkSweepGC" to enable the CMS garbage collector (improved | ||
# response time). If you use that option and you run Tomcat on a machine with | ||
# exactly one CPU chip that contains one or two cores, you should also add | ||
# the "-XX:+CMSIncrementalMode" option. | ||
JAVA_OPTS="-Djava.awt.headless=true -Xmx128m -XX:MaxPermSize=256m -Dlog4j.configuration=file:/tmp/log4j.properties -Dlogback.configurationFile=/tmp/logback.xml" | ||
|
||
# To enable remote debugging uncomment the following line. | ||
# You will then be able to use a java debugger on port 8000. | ||
#JAVA_OPTS="${JAVA_OPTS} -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" | ||
|
||
# Java compiler to use for translating JavaServer Pages (JSPs). You can use all | ||
# compilers that are accepted by Ant's build.compiler property. | ||
JSP_COMPILER=javac | ||
|
||
|
||
# Use the Java security manager? (yes/no, default: no) | ||
TOMCAT9_SECURITY=no | ||
|
||
|
||
# Number of days to keep logfiles in /var/log/tomcat8. Default is 14 days. | ||
#LOGFILE_DAYS=14 | ||
# Whether to compress logfiles older than today's | ||
#LOGFILE_COMPRESS=1 | ||
|
||
# Location of the JVM temporary directory | ||
# WARNING: This directory will be destroyed and recreated at every startup ! | ||
JVM_TMP=/tmp/tomcat | ||
|
||
|
||
# If you run Tomcat on port numbers that are all higher than 1023, then you | ||
# do not need authbind. It is used for binding Tomcat to lower port numbers. | ||
# (yes/no, default: no) | ||
AUTHBIND=no |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<!-- | ||
This file is managed/autogenerated by salt. | ||
Manual changes risk being overwritten. | ||
Modify the salt pillar for the tomcat formula | ||
that generates this file instead. | ||
--> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!-- Note: A "Server" is not itself a "Container", so you may not | ||
define subcomponents such as "Valves" at this level. | ||
Documentation at /docs/config/server.html | ||
--> | ||
<Server port="8005" shutdown="SHUTDOWN"> | ||
<!-- Security listener. Documentation at /docs/config/listeners.html | ||
<Listener className="org.apache.catalina.security.SecurityListener" /> | ||
--> | ||
|
||
<!--APR library loader. Documentation at /docs/apr.html --> | ||
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> | ||
|
||
|
||
|
||
|
||
<!-- Prevent memory leaks due to use of particular java/javax APIs--> | ||
<!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html --> | ||
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" /> | ||
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /> | ||
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" /> | ||
|
||
<!-- Global JNDI resources | ||
Documentation at /docs/jndi-resources-howto.html | ||
--> | ||
<GlobalNamingResources> | ||
|
||
|
||
<!-- Editable user database that can also be used by | ||
UserDatabaseRealm to authenticate users | ||
--> | ||
<Resource name="UserDatabase" auth="Container" | ||
type="org.apache.catalina.UserDatabase" | ||
description="User database that can be updated and saved" | ||
factory="org.apache.catalina.users.MemoryUserDatabaseFactory" | ||
pathname="conf/tomcat-users.xml" /> | ||
</GlobalNamingResources> | ||
|
||
<!-- A "Service" is a collection of one or more "Connectors" that share | ||
a single "Container" Note: A "Service" is not itself a "Container", | ||
so you may not define subcomponents such as "Valves" at this level. | ||
Documentation at /docs/config/service.html | ||
--> | ||
<Service name="Catalina"> | ||
<Connector | ||
|
||
port="8443" | ||
protocol="org.apache.coyote.http11.Http11Protocol" | ||
connectionTimeout="20000" | ||
URIEncoding="UTF-8" | ||
redirectPort="8443" | ||
maxHttpHeaderSize="8192" | ||
maxThreads="150" | ||
minSpareThreads="25" | ||
enableLookups="false" | ||
disableUploadTimeout="true" | ||
acceptCount="100" | ||
scheme="https" | ||
secure="true" | ||
clientAuth="false" | ||
sslProtocol="TLS" | ||
SSLEnabled="false" | ||
keystoreFile="/path/to/keystoreFile" | ||
keystorePass="somerandomtext" | ||
/> | ||
|
||
|
||
<Engine name="Catalina" defaultHost="localhost"> | ||
|
||
<!-- Use the LockOutRealm to prevent attempts to guess user passwords | ||
via a brute-force attack --> | ||
<Realm className="org.apache.catalina.realm.LockOutRealm"> | ||
<!-- This Realm uses the UserDatabase configured in the global JNDI | ||
resources under the key "UserDatabase". Any edits | ||
that are performed against this UserDatabase are immediately | ||
available for use by the Realm. --> | ||
<Realm className="org.apache.catalina.realm.UserDatabaseRealm" | ||
resourceName="UserDatabase"/> | ||
</Realm> | ||
|
||
|
||
|
||
<Host name="tomcat-server" | ||
unpackWARs="true" | ||
autoDeploy="true" | ||
deployXML="false"> | ||
<Context path="" | ||
docBase="../webapps/myapp" | ||
debug="0" | ||
reloadable="true" | ||
/> | ||
|
||
<Alias>www.example.com</Alias> | ||
|
||
</Host> | ||
|
||
<Host name="example.net" | ||
unpackWARs="true" | ||
autoDeploy="true"> | ||
<Context path="" | ||
docBase="../webapps/myapp2" | ||
debug="0" | ||
reloadable="true" | ||
/> | ||
|
||
<Alias>www.example.net</Alias> | ||
|
||
<Valve | ||
className="org.apache.catalina.valves.AccessLogValve" | ||
directory="logs" | ||
prefix="localhost_access_log." | ||
fileDateFormat="yyyy-MM-dd-HH" | ||
suffix=".log" | ||
pattern="%h %l %u %t "%m http://%v%U %H" %s %b "%{Referer}i" "%{User-Agent}i" %D" /> | ||
<Valve | ||
className="org.apache.catalina.authenticator.SingleSignOn" /> | ||
|
||
</Host> | ||
|
||
|
||
</Engine> | ||
</Service> | ||
</Server> |
Oops, something went wrong.