| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- spring:
- profiles.include: audit, client-sec
- redis:
- database: 1
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- resources:
- chain:
- gzipped: true
- datasource:
- url: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=admin&ApplicationName=adminApp
- username: crss_admin
- password: YReYA7fI
- # TODO: UPDATE configs for prod
- mail:
- subject:
- prefix: "[CRSS]"
- # Set to local mailserver for testing. Pleaase unset after.
- #host: 192.168.10.175
- host: 192.168.9.10
- port: 25
- # username: crss-mailer@wesm.ph
- username: crss-mailer@iemop.ph
- password: Cr551234
- #host: mailserver.marathon.l4lb.thisdcos.directory
- #port: 3025
- #username: crss@local.dev.pemc.com
- #password: P@ssw0rd1434412
- properties:
- transport.protocol: smtp
- smtp:
- auth: true
- starttls.enable: true
- # TODO: UPDATE configs for prod
- crss:
- ldap:
- protocol: LDAPS
- host: ${crss.ad.ip}
- port: 636
- root-dn: "dc=wesmsys,dc=local"
- user-search-base: MO,MP,SO
- admin-user: "wesmsys\\crss_user"
- admin-password: "Cr$$1234"
- username-field: "userPrincipalName"
- domain: "wesmsys.local"
- embedded: false
- passwordOpEnabled: true
- passwordExpiryField: "msDS-UserPasswordExpiryTimeComputed"
- mail:
- # signature:
- # root-dir: /crss/esig
- signature:
- root-dir: /crss-uat-sit/esig
- bcc:
- DOE: DOE@mail.com
- ERC: ERC@mail.com
- PEMBOARD: PEMBOARD@mail.com
- MSP: MSP@mail.com
- feign:
- hystrix:
- enabled: false
- shareSecurityContext: true
- management:
- health:
- defaults:
- enabled: false
- logging:
- level:
- com.pemc.crss: DEBUG
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- docmgt:
- root-dir: /crss/docmgt
- server:
- session:
- cookie:
- secure: true
|