application.yml 401 B

123456789101112131415161718192021
  1. ##公共配置
  2. server:
  3. svr-dashboard-port: 8000
  4. svr-base-port: 10020
  5. web-gateway-port: 8088
  6. #发现服务
  7. eureka:
  8. client:
  9. healthcheck:
  10. enabled: true #启动监控检查
  11. instance:
  12. #eurika使用IP不使用host
  13. prefer-ip-address: true
  14. #定制化在eurika中显示的名称
  15. instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}