application.yml 467 Bytes
Newer Older
1 2 3 4 5 6 7
server:
  port: 5678
spring:
  application:
    name: sidecarTest

sidecar:
8 9 10 11 12 13
  port: 8000
  health-uri: http://localhost:8000/src/test/resources/health.json

eureka:
  instance:
    app-group-name: mysidecargroup
14 15 16
  client:
    serviceUrl:
      defaultZone: http://user:password@localhost:8761/eureka/
17

18 19
ribbon:
  ServerListRefreshInterval: 5000
20
  ReadTimeout: 7777
21

22 23 24 25 26 27 28
endpoints:
  refresh:
    enabled: true
  shutdown:
    enabled: true
  health:
    sensitive: false
29