14 lines
293 B
YAML
14 lines
293 B
YAML
spring:
|
|
application:
|
|
name: myApp
|
|
cloud:
|
|
consul:
|
|
host: localhost
|
|
port: 8500
|
|
discovery:
|
|
healthCheckPath: /my-health-check
|
|
healthCheckInterval: 20s
|
|
enabled: true
|
|
instanceId: ${spring.application.name}:${random.value}
|
|
server:
|
|
port: 0 |