| 1234567891011121314151617181920212223242526272829303132333435363738 |
- spring:
- rabbitmq:
- host: localhost
- username: user
- password: a9Kpj4Xt8mNw
- redis:
- host: localhost
- datasource:
- driverClassName: org.postgresql.Driver
- crss:
- api.gateway: http://localhost:8088
- security.url: http://localhost:9999/uaa
- admin-url: http://localhost:8081
- logging:
- level:
- com.pemc.crss: DEBUG
- cfg:
- general:
- interval: 5
- calcValidation: false
-
- security:
- oauth2:
- client:
- accessTokenUri: http://localhost:9999/uaa/oauth/token
- userAuthorizationUri: http://localhost:9999/uaa/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:9999/uaa/user
|