Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 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=clincapture-2.1.15.X-test
  15. dbType=postgres
  16. dbUser=clincapture
  17. dbPass=clincapture
  18. dbPort=5432
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement