bootstrap.yml 382 Bytes
Newer Older
1 2
eureka:
  instance:
Yiming Liu committed
3 4
    hostname: ${hostname:localhost}
    preferIpAddress: true
5 6
  client:
    serviceUrl:
Yiming Liu committed
7 8
      defaultZone: http://${eureka.instance.hostname}:8080/eureka/
    healthcheck:
9 10 11 12 13 14 15 16 17 18 19 20
      enabled: true
      
      
endpoints:
  health:
    sensitive: false

management:
  security:
    enabled: false
  health:
    status:
lepdou committed
21
      order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP