123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version='1.0' encoding='utf-8'?>
- <Context docBase="/usr/local/labkey/labkeywebapp" reloadable="true" crossContext="true">
-
- <Resource name="jdbc/labkeyDataSource" auth="Container"
- type="javax.sql.DataSource"
- username="postgres"
- password="verySecret"
- driverClassName="org.postgresql.Driver"
- url="jdbc:postgresql://labkey-db:5432/labkey"
- maxTotal="20"
- maxIdle="10"
- maxWaitMillis="120000"
- accessToUnderlyingConnectionAllowed="true"
- validationQuery="SELECT 1"
- />
- <Resource name="mail/Session" auth="Container"
- type="javax.mail.Session"
- mail.smtp.host="@@smtpHost@@"
- mail.smtp.user="@@smtpUser@@"
- mail.smtp.port="@@smtpPort@@"/>
- <Resources cachingAllowed="true" cacheMaxSize="20000" />
- <Loader loaderClass="org.labkey.bootstrap.LabKeyBootstrapClassLoader" />
- <!-- Encryption key for encrypted property store and other potentially sensitive content -->
- <Parameter name="EncryptionKey" value="@@encryptionKey@@" />
- <!--@@extraJdbcDataSource@@
- <Resource name="jdbc/@@extraJdbcDataSource@@" auth="Container"
- type="javax.sql.DataSource"
- username="@@extraJdbcUsername@@"
- password="@@extraJdbcPassword@@"
- driverClassName="@@extraJdbcDriverClassName@@"
- url="@@extraJdbcUrl@@"
- maxTotal="20"
- maxIdle="10"
- accessToUnderlyingConnectionAllowed="true"
- validationQuery="SELECT 1"/>
- @@extraJdbcDataSource@@-->
- <!-- mzML support via JNI -->
- <!--
- <Parameter name="org.labkey.api.ms2.mzmlLibrary" value="pwiz_swigbindings"></Parameter>
- -->
- <!-- Pipeline configuration -->
- <!--@@pipeline@@ <Parameter name="org.labkey.api.pipeline.config" value="@@pipelineConfigPath@@"/> @@pipeline@@-->
- <!--@@jmsConfig@@ <Resource name="jms/ConnectionFactory" auth="Container"
- type="org.apache.activemq.ActiveMQConnectionFactory"
- factory="org.apache.activemq.jndi.JNDIReferenceFactory"
- description="JMS Connection Factory"
- brokerURL="vm://localhost?broker.persistent=false&broker.useJmx=false"
- brokerName="LocalActiveMQBroker"/> @@jmsConfig@@-->
- </Context>
|