application.properties.sample 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ## Configure your application using the properties below. Not all properties are needed.
  2. ## Uncomment lines to activate them. Substitute values shown with @@ markers.
  3. ## Learn more here: https://www.labkey.org/Documentation/wiki-page.view?name=applicationProperties
  4. ####################################################################################
  5. ## Database connections and encryption key.
  6. ####################################################################################
  7. ## Primary database configuration
  8. ## All deployments need a "labkeyDataSource" as their primary database.
  9. context.resources.jdbc.labkeyDataSource.type=javax.sql.DataSource
  10. context.resources.jdbc.labkeyDataSource.driverClassName=org.postgresql.Driver
  11. context.resources.jdbc.labkeyDataSource.url=jdbc:postgresql://labkey-db:5432/labkey
  12. context.resources.jdbc.labkeyDataSource.username=postgres
  13. context.resources.jdbc.labkeyDataSource.password=somethingSecret
  14. context.resources.jdbc.labkeyDataSource.maxTotal=50
  15. context.resources.jdbc.labkeyDataSource.maxIdle=10
  16. context.resources.jdbc.labkeyDataSource.maxWaitMillis=120000
  17. context.resources.jdbc.labkeyDataSource.accessToUnderlyingConnectionAllowed=true
  18. context.resources.jdbc.labkeyDataSource.validationQuery=SELECT 1
  19. #context.resources.jdbc.labkeyDataSource.logQueries=true
  20. #context.resources.jdbc.labkeyDataSource.displayName=Alternate Display Name
  21. ## Add external data sources using a prefix containing a unique extraDataSourceName.
  22. ## i.e. context.resources.jdbc.@@extraDataSourceName@@.<necessary property names>
  23. ## At a minimum, they must include these required properties: driverClassName, url, username, and password
  24. #context.resources.jdbc.@@extraDataSourceName@@.driverClassName=org.postgresql.Driver
  25. #context.resources.jdbc.@@extraDataSourceName@@.url=jdbc:postgresql://localhost:5432/extraDataSource
  26. #context.resources.jdbc.@@extraDataSourceName@@.username=@@username@@
  27. #context.resources.jdbc.@@extraDataSourceName@@.password=@@password@@
  28. context.encryptionKey=tai3PhahfuSi7Gu8ohsh0Ae2ohQuoozi
  29. ####################################################################################
  30. ## Port and HTTP/HTTPS Settings
  31. ####################################################################################
  32. ## Set the primary port.
  33. ## Required. If using HTTPS, this will typically be 443.
  34. ## If using HTTP, this will typically be 80
  35. server.port=8080
  36. ## To use HTTPS, update and uncomment the necessary properties below.
  37. ## Learn more here: https://www.labkey.org/Documentation/wiki-page.view?name=labkeyssl
  38. #server.ssl.enabled=true
  39. #server.ssl.enabled-protocols=TLSv1.3,TLSv1.2
  40. #server.ssl.protocol=TLS
  41. #server.ssl.key-alias=tomcat
  42. #server.ssl.key-store=@@keyStore@@
  43. #server.ssl.key-store-password=@@keyStorePassword@@
  44. #server.ssl.key-store-type=PKCS12
  45. #server.ssl.ciphers=HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!kRSA:!EDH:!DHE:!DH:!CAMELLIA:!ARIA:!AESCCM:!SHA:!CHACHA20
  46. server.error.include-stacktrace=always
  47. server.error.include-message=always
  48. ## HTTP-only port for servers that need to handle both HTTPS (configure via server.port and server.ssl above) and HTTP
  49. ## This must not be the same as the server.port set above.
  50. #context.httpPort=80
  51. ## We strongly recommend deploying LabKey at the root context path (e.g. http://localhost:8080)
  52. ## If your previous configuration file was named "ROOT.xml", you were already deployed at the root.
  53. ## If you previously used a different context path, such as "/labkey" (i.e. with a configuration
  54. ## file named "labkey.xml"), set a legacy context path for backwards compatibility.
  55. ## Previous URLs, GETs, etc. will be redirected or handled server-side via a servlet forward.
  56. #context.legacyContextPath=/labkey
  57. ## We do not recommend deploying to a non-root context path (e.g. http://localhost:8080/labkey)
  58. ## If you do set this property, do not set a legacyContextPath.
  59. #context.contextPath=/labkey
  60. ####################################################################################
  61. ## SMTP configuration
  62. ## Learn more here: https://www.labkey.org/Documentation/wiki-page.view?name=SMTPsettings
  63. ####################################################################################
  64. mail.smtpHost=localhost
  65. mail.smtpPort=25
  66. mail.smtpUser=Anonymous
  67. #mail.smtpFrom=@@smtpFrom@@
  68. #mail.smtpPassword=@@smtpPassword@@
  69. #mail.smtpStartTlsEnable=@@smtpStartTlsEnable@@
  70. #mail.smtpSocketFactoryClass=@@smtpSocketFactoryClass@@
  71. #mail.smtpAuth=@@smtpAuth@@
  72. ####################################################################################
  73. ## Optional properties needed in some situations.
  74. ####################################################################################
  75. ## HTTP session timeout for users. Leave commented out for the default of 30 minutes.
  76. ## Uncomment and set a different value if required.
  77. #server.servlet.session.timeout=30m
  78. ## Use a custom logging configuration
  79. #logging.config=labkeywebapp/WEB-INF/classes/log4j2.xml
  80. ## Enable tomcat access log
  81. #server.tomcat.accesslog.enabled=true
  82. #server.tomcat.accesslog.pattern=%h %l %u %t "%r" %s %b %D %S %I "%{Referrer}i" "%{User-Agent}i" %{LABKEY.username}s
  83. #context.requiredModules=
  84. #context.pipelineConfig=@@/path/to/pipeline/config/dir@@
  85. #context.serverGUID=
  86. #context.bypass2FA=true
  87. #context.workDirLocation=@@/path/to/desired/workDir@@
  88. ## Other webapps to be deployed, most commonly to deliver a set of static files. The context path to deploy into is the
  89. ## property name after the "context.additionalWebapps." prefix, and the value is the location of the webapp on disk
  90. #context.additionalWebapps.firstContextPath=@@/my/webapp/path@@
  91. #context.additionalWebapps.secondContextPath=@@/my/other/webapp/path@@