labkey.xml.template 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <Context docBase="/usr/local/labkey/labkeywebapp" reloadable="true" crossContext="true">
  3. <Resource name="jdbc/labkeyDataSource" auth="Container"
  4. type="javax.sql.DataSource"
  5. username="postgres"
  6. password="verySecret"
  7. driverClassName="org.postgresql.Driver"
  8. url="jdbc:postgresql://labkey-db:5432/labkey"
  9. maxTotal="20"
  10. maxIdle="10"
  11. maxWaitMillis="120000"
  12. accessToUnderlyingConnectionAllowed="true"
  13. validationQuery="SELECT 1"
  14. />
  15. <Resource name="mail/Session" auth="Container"
  16. type="javax.mail.Session"
  17. mail.smtp.host="@@smtpHost@@"
  18. mail.smtp.user="@@smtpUser@@"
  19. mail.smtp.port="@@smtpPort@@"/>
  20. <Resources cachingAllowed="true" cacheMaxSize="20000" />
  21. <Loader loaderClass="org.labkey.bootstrap.LabKeyBootstrapClassLoader" />
  22. <!-- Encryption key for encrypted property store and other potentially sensitive content -->
  23. <Parameter name="EncryptionKey" value="@@encryptionKey@@" />
  24. <!--@@extraJdbcDataSource@@
  25. <Resource name="jdbc/@@extraJdbcDataSource@@" auth="Container"
  26. type="javax.sql.DataSource"
  27. username="@@extraJdbcUsername@@"
  28. password="@@extraJdbcPassword@@"
  29. driverClassName="@@extraJdbcDriverClassName@@"
  30. url="@@extraJdbcUrl@@"
  31. maxTotal="20"
  32. maxIdle="10"
  33. accessToUnderlyingConnectionAllowed="true"
  34. validationQuery="SELECT 1"/>
  35. @@extraJdbcDataSource@@-->
  36. <!-- mzML support via JNI -->
  37. <!--
  38. <Parameter name="org.labkey.api.ms2.mzmlLibrary" value="pwiz_swigbindings"></Parameter>
  39. -->
  40. <!-- Pipeline configuration -->
  41. <!--@@pipeline@@ <Parameter name="org.labkey.api.pipeline.config" value="@@pipelineConfigPath@@"/> @@pipeline@@-->
  42. <!--@@jmsConfig@@ <Resource name="jms/ConnectionFactory" auth="Container"
  43. type="org.apache.activemq.ActiveMQConnectionFactory"
  44. factory="org.apache.activemq.jndi.JNDIReferenceFactory"
  45. description="JMS Connection Factory"
  46. brokerURL="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"
  47. brokerName="LocalActiveMQBroker"/> @@jmsConfig@@-->
  48. </Context>