13 lines
343 B
YAML
13 lines
343 B
YAML
server:
|
|
port: ${PORT:${SERVER_PORT:0}}
|
|
eureka:
|
|
client:
|
|
fetch-registry: true
|
|
register-with-eureka: true
|
|
service-url:
|
|
default-zone: http://localhost:8761/eureka
|
|
instance:
|
|
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
|
|
spring:
|
|
application:
|
|
zipkin: http://localhost:9411 |