application.yml 452 B

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