| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- spring:
- datasource:
- url: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=registration
- username: crss_registration
- password: 51UF3JA9
- crss-stl:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=settlement
- username: crss_settlement
- password: i17SMOPm
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=dataflow
- username: crss_dataflow
- password: lgcCpwy0
- crss-admin:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=admin
- username: crss_admin
- password: YReYA7fI
- crss-meterprocess:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=meterprocess
- username: crss_meterprocess
- password: D9JpfUtT
- #xdf-control:
- # TODO: update to oracle datasource once credentials are available
- #datasource:
- #url: jdbc:oracle:thin:@//172.16.3.10:1521/DOR
- #username: DOR_RT
- #password: DOR_RT
- #driverClassName: oracle.jdbc.OracleDriver
- profiles.include: audit, client-sec
- jpa:
- properties:
- hibernate:
- integration.envers.enabled: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- resources:
- chain:
- gzipped: true
- crss:
- docmgt:
- root-dir: /crss/docmgt
- xdf:
- client-type: sftp # OPTIONS:[local, ftp, sftp]
- root-folder: /upload/xdf
- auto-create-dir: true
- file-encoding: UTF-8
- file-exists-mode: fail # OPTIONS:[append, append_no_flush, fail, ignore, replace]
- remote:
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- username: pemc
- password: 123qwe
- aeprreport:
- validate: true
- attestation:
- root-folder: /crss/attestation
- crypto:
- aes:
- key: 1234567890abcdef # 16/24/32 cha
- feign:
- hystrix:
- enabled: false
- server:
- # TODO: investigate this part and move to global config
- jackson:
- # for further customization please consult the documentation:
- # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
- # https://github.com/FasterXML/jackson-databind/wiki
- # deserialization:
- # FAIL_ON_UNKNOWN_PROPERTIES: true
- # DEFAULT_VIEW_INCLUSION: true
- serialization:
- write_dates_as_timestamps: false
- session:
- cookie:
- secure: true
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
|