mirror of
https://gitee.com/mirrors/Spring-Cloud-Alibaba.git
synced 2021-06-26 13:25:11 +08:00
24 lines
457 B
YAML
24 lines
457 B
YAML
server:
|
|
port: 8070
|
|
spring:
|
|
cloud:
|
|
nacos:
|
|
discovery:
|
|
server-addr: localhost:8848
|
|
gateway:
|
|
discovery:
|
|
locator:
|
|
enabled: true
|
|
application:
|
|
name: node-service
|
|
sidecar:
|
|
# 异构微服务的IP
|
|
ip: 127.0.0.1
|
|
# 异构微服务的端口
|
|
port: 8060
|
|
# 异构微服务的健康检查URL
|
|
health-check-url: http://localhost:8060/health.json
|
|
management:
|
|
endpoint:
|
|
health:
|
|
show-details: always |