crss-reg.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. feign:
  62. hystrix:
  63. enabled: false
  64. server:
  65. # TODO: investigate this part and move to global config
  66. jackson:
  67. # for further customization please consult the documentation:
  68. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  69. # https://github.com/FasterXML/jackson-databind/wiki
  70. # deserialization:
  71. # FAIL_ON_UNKNOWN_PROPERTIES: true
  72. # DEFAULT_VIEW_INCLUSION: true
  73. serialization:
  74. write_dates_as_timestamps: false
  75. session:
  76. cookie:
  77. secure: true
  78. sftp:
  79. credentials:
  80. username: pemc
  81. password: 123qwe
  82. host: sftp.marathon.l4lb.thisdcos.directory
  83. port: 22