crss-reg.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. spring:
  2. datasource:
  3. url: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=registration
  4. username: crss_registration
  5. password: 51UF3JA9
  6. crss-stl:
  7. datasource:
  8. jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=settlement
  9. username: crss_settlement
  10. password: i17SMOPm
  11. crss-dataflow:
  12. datasource:
  13. jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=dataflow
  14. username: crss_dataflow
  15. password: lgcCpwy0
  16. crss-admin:
  17. datasource:
  18. jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=admin
  19. username: crss_admin
  20. password: YReYA7fI
  21. crss-meterprocess:
  22. datasource:
  23. jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=meterprocess
  24. username: crss_meterprocess
  25. password: D9JpfUtT
  26. #xdf-control:
  27. # TODO: update to oracle datasource once credentials are available
  28. #datasource:
  29. #url: jdbc:oracle:thin:@//172.16.3.10:1521/DOR
  30. #username: DOR_RT
  31. #password: DOR_RT
  32. #driverClassName: oracle.jdbc.OracleDriver
  33. profiles.include: audit, client-sec
  34. jpa:
  35. properties:
  36. hibernate:
  37. integration.envers.enabled: true
  38. http:
  39. multipart:
  40. maxFileSize: "25Mb"
  41. maxRequestSize: "25Mb"
  42. resources:
  43. chain:
  44. gzipped: true
  45. crss:
  46. docmgt:
  47. root-dir: /crss/docmgt
  48. xdf:
  49. client-type: sftp # OPTIONS:[local, ftp, sftp]
  50. root-folder: /upload/xdf
  51. auto-create-dir: true
  52. file-encoding: UTF-8
  53. file-exists-mode: fail # OPTIONS:[append, append_no_flush, fail, ignore, replace]
  54. remote:
  55. host: sftp.marathon.l4lb.thisdcos.directory
  56. port: 22
  57. username: pemc
  58. password: 123qwe
  59. aeprreport:
  60. validate: true
  61. attestation:
  62. root-folder: /crss/attestation
  63. crypto:
  64. aes:
  65. key: 1234567890abcdef # 16/24/32 cha
  66. feign:
  67. hystrix:
  68. enabled: false
  69. server:
  70. # TODO: investigate this part and move to global config
  71. jackson:
  72. # for further customization please consult the documentation:
  73. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  74. # https://github.com/FasterXML/jackson-databind/wiki
  75. # deserialization:
  76. # FAIL_ON_UNKNOWN_PROPERTIES: true
  77. # DEFAULT_VIEW_INCLUSION: true
  78. serialization:
  79. write_dates_as_timestamps: false
  80. session:
  81. cookie:
  82. secure: true
  83. sftp:
  84. credentials:
  85. username: pemc
  86. password: 123qwe
  87. host: sftp.marathon.l4lb.thisdcos.directory
  88. port: 22