bootstrap.yml 350 Bytes
Newer Older
1 2 3 4 5
eureka:
  instance:
    hostname: ${hostname:localhost}
  client:
    serviceUrl:
6
      defaultZone: http://${eureka.instance.hostname}:8090/eureka/
7
    healthcheck:
8 9 10 11 12 13 14 15 16 17 18 19
      enabled: true
      

endpoints:
  health:
    sensitive: false

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