DCD-352: Add Synchrony proxy configuration.

This commit is contained in:
Steve Smith
2019-05-28 11:12:30 +10:00
parent 47f829fc39
commit 9258579814

View File

@@ -50,32 +50,37 @@
compressableMimeType="text/html,text/xml,text/plain,text/css,application/json,application/javascript,application/x-javascript" /> compressableMimeType="text/html,text/xml,text/plain,text/css,application/json,application/javascript,application/x-javascript" />
{% endif %} {% endif %}
<Engine name="Catalina"
defaultHost="localhost"> <Engine name="Standalone"
defaultHost="localhost"
debug="0">
<Host name="localhost" <Host name="localhost"
debug="0"
appBase="webapps" appBase="webapps"
unpackWARs="true" unpackWARs="true"
autoDeploy="true"> autoDeploy="false"
startStopThreads="4">
<Context path="{{ atl_tomcat_contextpath }}" <Context path="{{ atl_tomcat_contextpath }}"
docBase="${catalina.home}/confluence" docBase="../confluence"
debug="0"
reloadable="false" reloadable="false"
useHttpOnly="true"> useHttpOnly="true">
<Resource name="UserTransaction" <!-- Logging configuration for Confluence is specified in confluence/WEB-INF/classes/log4j.properties -->
auth="Container"
type="javax.transaction.UserTransaction"
factory="org.objectweb.jotm.UserTransactionFactory"
jotm.timeout="60"/>
<Manager pathname=""/> <Manager pathname=""/>
<JarScanner scanManifest="false"/>
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" <Valve className="org.apache.catalina.valves.StuckThreadDetectionValve"
threshold="120" /> threshold="60"/>
</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> </Context>
</Host> </Host>
<Valve className="org.apache.catalina.valves.AccessLogValve"
pattern="%a %{jira.request.id}r %{jira.request.username}r %t &quot;%m %U%q %H&quot; %s %b %D &quot;%{Referer}i&quot; &quot;%{User-Agent}i&quot; &quot;%{jira.request.assession.id}r&quot;"/>
</Engine> </Engine>
</Service>
</Server> </Server>