application.yml 649 B

123456789101112131415161718192021222324252627282930
  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. context-path:
  9. svr-dashboard-context-path: 9010
  10. svr-web-gateway-context-path: 8088
  11. svr-base-context-path: 10020
  12. svr-quota-context-path: 10030
  13. svr-logServer-context-path: 9411
  14. #发现服务
  15. eureka:
  16. client:
  17. healthcheck:
  18. enabled: true #启动监控检查
  19. instance:
  20. #eurika使用IP不使用host
  21. prefer-ip-address: true
  22. #定制化在eurika中显示的名称
  23. instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}