bootstrap.yml 499 Bytes
Newer Older
1 2
eureka:
  instance:
3
    hostname: ${hostname:localhost}
Yiming Liu committed
4
    preferIpAddress: true
Yiming Liu committed
5
  server:
6
    peerEurekaNodesUpdateIntervalMs: 60000
Yiming Liu committed
7
    enableSelfPreservation: false
8 9
  client:
    serviceUrl:
Yiming Liu committed
10
      defaultZone: http://${eureka.instance.hostname}:8080/eureka/
11
    healthcheck:
12
      enabled: true
13
    eurekaServiceUrlPollIntervalSeconds: 60
Yiming Liu committed
14 15

endpoints:
16 17 18 19 20 21 22 23
  health:
    sensitive: false

management:
  security:
    enabled: false
  health:
    status:
24
      order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP