Advertisement
Guest User

Untitled

a guest
Feb 12th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.39 KB | None | 0 0
  1. ##################################################################
  2. # 1 - Database Configuration
  3. #
  4. # Database configuration is done with the following 6 properties
  5. # The dbType options are either postgres or oracle.
  6. # Enter the user name and password to access the database in
  7. # dbUser and dbPass.
  8. # The db field is for the name of the database and provide the port
  9. # in dbPort.
  10. # dbHost can be a URL, IP address or localhost
  11. #
  12. # REQUIRED
  13. ##################################################################
  14. db=studio
  15. dbType=postgres
  16. dbUser=clincapture
  17. dbPass=clincapture
  18. dbPort=5433
  19. dbHost=localhost
  20.  
  21. ##################################################################
  22. # 2 - Logging configuration
  23. #
  24. # SysLog support has been fully implemented in ClinCapture, but
  25. # by default has been turned off.
  26. # Every piece of code that could send information to the syslog
  27. # server has not been reviewed and cleaned to ensure it is entirely
  28. # readable and useful. This will be an ongoing effort and resolved
  29. # in a future release. Please use the SysLog support at your
  30. # own risk.
  31. #
  32. # Specify the log location - local/syslog/both
  33. #
  34. # REQUIRED
  35. ##################################################################
  36. logLocation=local
  37. #
  38. # Specify logging level - trace/debug/info/warn/error
  39. logLevel=error
  40. syslog.host=localhost
  41. syslog.port=514
  42.  
  43. ##################################################################
  44. # 3 - Usage statistics configuration
  45. #
  46. # Usage statistics refers to information automatically sent back to ClinCapture.org
  47. # to help us figure out how well ClinCapture is working and help us improve it in
  48. # future versions.
  49. #
  50. # This includes technical information such as the version of ClinCapture installed, the
  51. # number of studies created and user load. These statistics DO NOT include information
  52. # such as study or CRF names, study data, or user information. We collect this data in
  53. # aggregate and use it to improve our products and services.
  54. #
  55. # As part of system configuration, we give you the option to help us improve
  56. # ClinCapture by sending these usage statistics. If you elect to send this information but
  57. # later change your mind, you can disable this feature in the datainfo.properties file by
  58. # changing 'collectStats' value to 'false'.
  59. #
  60. # REQUIRED
  61. ##################################################################
  62. collectStats=true
  63. usage.stats.host=localhost
  64. usage.stats.port=514
  65.  
  66. ##################################################################
  67. # 4 - UI preset.
  68. #
  69. # Defines if Nav Bar should be shown on all pages or not.
  70. # This property is needed to simplify development process.
  71. # Acceptable values are: 'true', 'false'
  72. ##################################################################
  73. showNavBar=false
  74. parentWindowUrl=http://portal.local.com/#
  75. userGuideUrl=https://docs-dev.clincapture.com/captivate-live-user-guide-v3-0/
  76.  
  77. ##################################################################
  78. # 5 - Messages timeout.
  79. #
  80. # Defines a timeout for displaying messages upon initial login
  81. # Acceptable values: numeric
  82. ##################################################################
  83. messageTimeout=6000
  84.  
  85. ##################################################################
  86. # 6 - CORS security settings
  87. #
  88. # Single source is allowed only.
  89. ##################################################################
  90. cors.allow-origin=http://portal.local.com
  91.  
  92. ##################################################################
  93. # 7 - X-Frame-Options security settings.
  94. #
  95. # Single source is allowed only.
  96. ##################################################################
  97. x-frame-options.allow-from=http://portal.local.com
  98.  
  99. ##################################################################
  100. # 8 - Content Security Policy settings.
  101. #
  102. # Use space to divide sources.
  103. ##################################################################
  104. csp.frame-ancestors=http://*.local.com
  105.  
  106. ##################################################################
  107. # 9 - Application deployment info.
  108. ##################################################################
  109. webapp.host=http://localhost:8080
  110.  
  111. ##################################################################
  112. # 10 - Captivate Live
  113. #
  114. # Determines if header/taskbar/left menu/footer should be shown on
  115. # non-build pages.
  116. # Acceptable values are: 'true', 'false'
  117. ##################################################################
  118. captivateLive=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement