application.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ##公共配置
  2. server:
  3. svr-dashboard-port: 9010
  4. web-gateway-port: 8088
  5. svr-base-port: 10020
  6. svr-patient-port: 10021
  7. svr-wlyy-port: 10090
  8. svr-quota-port: 10030
  9. svr-logServer-port: 9411
  10. svr-iot-port: 10050
  11. context-path:
  12. svr-dashboard-context-path: /
  13. svr-web-gateway-context-path: /
  14. svr-base-context-path: /
  15. svr-patient-context-path: /
  16. svr-wlyy-context-path: /
  17. svr-quota-context-path: /
  18. svr-logServer-context-path: /
  19. svr-configurations-context-path: /
  20. svr-iot-context-path: /
  21. #发现服务
  22. eureka:
  23. client:
  24. healthcheck:
  25. enabled: true #启动监控检查
  26. instance:
  27. #eurika使用IP不使用host
  28. prefer-ip-address: true
  29. #定制化在eurika中显示的名称
  30. ##instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
  31. instance-id: ${spring.cloud.client.ipAddress}:${server.port}
  32. leaseRenewalIntervalInSeconds: 30 ##心跳时间 默认30秒 一般不修改
  33. yihu:
  34. admin:
  35. client:
  36. advice:
  37. http: true
  38. management:
  39. security:
  40. enabled: false
  41. endpoints:
  42. logfile:
  43. enabled: true