mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
20 lines
983 B
Django/Jinja
20 lines
983 B
Django/Jinja
<?xml version='1.0' encoding='utf-8'?>
|
|
<Server shutdown="SHUTDOWN">
|
|
<Listener className="org.apache.catalina.startup.VersionLoggerListener" />
|
|
<Listener className="org.apache.catalina.core.JasperListener" />
|
|
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
|
|
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
|
|
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
|
|
|
|
<Service name="Catalina">
|
|
<Connector port="{{ tomcat_port }}" protocol="HTTP/1.1" connectionTimeout="20000" />
|
|
<Engine name="Catalina" defaultHost="localhost">
|
|
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
|
|
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
|
|
prefix="localhost_access_log." suffix=".txt"
|
|
pattern="%h %l %u %t "%r" %s %b" />
|
|
</Host>
|
|
</Engine>
|
|
</Service>
|
|
</Server>
|