mirror of
https://bitbucket.org/atlassian-docker/docker-atlassian-confluence-server.git
synced 2024-08-30 18:22:16 +00:00
91 lines
3.9 KiB
Django/Jinja
91 lines
3.9 KiB
Django/Jinja
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Server port="{{ atl_tomcat_mgmt_port | default('8000') }}"
|
|
shutdown="SHUTDOWN">
|
|
|
|
<Listener className="org.apache.catalina.startup.VersionLoggerListener"/>
|
|
<Listener className="org.apache.catalina.core.AprLifecycleListener"
|
|
SSLEngine="on"/>
|
|
<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="{{ atl_tomcat_port | default('8090') }}"
|
|
maxThreads="{{ atl_tomcat_maxthreads | default('48') }}"
|
|
minSpareThreads="{{ atl_tomcat_minsparethreads | default('10') }}"
|
|
connectionTimeout="{{ atl_tomcat_connectiontimeout | default('20000') }}"
|
|
enableLookups="{{ atl_tomcat_enablelookups | default('false') }}"
|
|
protocol="{{ atl_tomcat_protocol | default('org.apache.coyote.http11.Http11NioProtocol') }}"
|
|
redirectPort="{{ atl_tomcat_redirectport | default('8443') }}"
|
|
acceptCount="{{ atl_tomcat_acceptcount | default('10') }}"
|
|
secure="{{ atl_tomcat_secure | default(catalina_connector_secure) | default('false') }}"
|
|
scheme="{{ atl_tomcat_scheme | default(catalina_connector_scheme) | default('http') }}"
|
|
proxyName="{{ atl_proxy_name | default(catalina_connector_proxyname) | default('') }}"
|
|
proxyPort="{{ atl_proxy_port | default(catalina_connector_proxyport) | default('') }}"
|
|
maxHttpHeaderSize="{{ atl_tomcat_maxhttpheadersize | default('8192') }}"
|
|
|
|
relaxedPathChars="[]|"
|
|
relaxedQueryChars="[]|{}^\`"<>"
|
|
|
|
bindOnInit="false"
|
|
|
|
useBodyEncodingForURI="true"
|
|
disableUploadTimeout="true" />
|
|
|
|
|
|
|
|
<Engine name="Standalone"
|
|
defaultHost="localhost"
|
|
debug="0">
|
|
<Host name="localhost"
|
|
debug="0"
|
|
appBase="webapps"
|
|
unpackWARs="true"
|
|
autoDeploy="false"
|
|
startStopThreads="4">
|
|
<Context path="{{ atl_tomcat_contextpath | default(catalina_context_path) | default('') }}"
|
|
docBase="../confluence"
|
|
debug="0"
|
|
reloadable="false"
|
|
useHttpOnly="true">
|
|
<!-- Logging configuration for Confluence is specified in confluence/WEB-INF/classes/log4j.properties -->
|
|
<Manager pathname=""/>
|
|
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve"
|
|
threshold="60"/>
|
|
{% if atl_tomcat_access_log == 'true' %}
|
|
<Valve className="org.apache.catalina.valves.AccessLogValve"
|
|
requestAttributesEnabled="true"
|
|
directory="logs"
|
|
prefix="confluence_access"
|
|
suffix=".log"
|
|
rotatable="true"
|
|
pattern="%h %{X-AUSERNAME}o %t "%r" %s %b %D %U %I "%{User-Agent}i"" />
|
|
<Valve className="org.apache.catalina.valves.RemoteIpValve"
|
|
proxiesHeader="x-forwarded-by"
|
|
internalProxies="{{ atl_tomcat_proxy_internal_ips | default('') }}"
|
|
remoteIpHeader="x-forwarded-for"
|
|
protocolHeader="x-forwarded-proto"
|
|
requestAttributesEnabled="true"
|
|
resolveHosts="false" />
|
|
{% endif %}
|
|
</Context>
|
|
|
|
<Context path="${confluence.context.path}/synchrony-proxy"
|
|
docBase="../synchrony-proxy"
|
|
debug="0"
|
|
reloadable="false"
|
|
useHttpOnly="true">
|
|
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve"
|
|
threshold="60"/>
|
|
</Context>
|
|
|
|
</Host>
|
|
</Engine>
|
|
|
|
</Service>
|
|
|
|
</Server>
|
|
|