| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- spring:
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-registration:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_reg
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_nmms
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- server:
- port: 8081
- dataflow:
- url: http://localhost:9393
- security:
- oauth2:
- client:
- accessTokenUri: http://localhost:8082/oauth/access_token
- userAuthorizationUri: http://localhost:8082/oauth/authorize
- clientId: crss
- clientSecret: crsssecret
- authorized-grant-types: authorization_code,refresh_token,password
- scope: openid
- access-token-validity-seconds: 3600
- resource:
- userInfoUri: http://localhost:8082/user
- management:
- security:
- enabled: false
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: pemc-storage.southeastasia.cloudapp.azure.com
- port: 22
- workingDirectory: /home/pemc/upload
- privateKey:
|