| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- security:
- oauth2:
- client:
- accessTokenUri: ${security.server.url:http://localhost:8082}/oauth/access_token
- userAuthorizationUri: ${security.server.url: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: ${security.server.url:http://localhost:8082}/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- server:
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- logging:
- pattern:
- level: 'username:%X{username:-system} %5p'
- level:
- com.pemc.crss: DEBUG
- com.netflix: WARN
- org.springframework.cloud: WARN
- ---
- spring:
- profiles: docker
- security.server.url: http://app:8080
- eureka:
- client:
- serviceUrl:
- defaultZone: http://discovery:8080/eureka/
- ---
- spring:
- profiles: staging
- profiles.include: docker
- rabbitmq:
- host: 192.168.241.62
- # TODO graylog
- graylog:
- host: pemc.integration.exist.com
- ---
- spring:
- profiles: uat
- profiles.include: docker
- rabbitmq:
- host: pemc-oracle.ss.exist.com
- graylog:
- host: pemc.integration.exist.com
|