| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # Experimental configuration to run metering in a developer's environment connecting to some staging services (database and messaging)
- spring:
- rabbitmq:
- username: guest
- password: guest
- host: localhost
- ports:
- - "5672:5672"
- - "15672:15672"
- server:
- port: 8084
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- # healthcheck:
- # enabled: true
- # lease:
- # duration: 5
- # instance:
- # leaseRenewalIntervalInSeconds: 1
- # leaseExpirationDurationInSeconds: 2
- 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
|