application.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ##公共配置
  2. server:
  3. svr-dashboard-port: 9010
  4. web-gateway-port: 8088
  5. svr-base-port: 10020
  6. svr-wlyy-port: 10090
  7. svr-quota-port: 10030
  8. svr-logServer-port: 9411
  9. svr-iot-port: 10050
  10. context-path:
  11. svr-dashboard-context-path: /
  12. svr-web-gateway-context-path: /
  13. svr-base-context-path: /
  14. svr-wlyy-context-path: /
  15. svr-quota-context-path: /
  16. svr-logServer-context-path: /
  17. svr-configurations-context-path: /
  18. svr-iot-context-path: /
  19. #发现服务
  20. eureka:
  21. client:
  22. healthcheck:
  23. enabled: false #启动监控检查
  24. serviceUrl:
  25. defaultZone: http://${eureka-server}/eureka/
  26. instance:
  27. prefer-ip-address: false
  28. #Actuator
  29. management:
  30. security:
  31. enabled: false
  32. #Hystrix
  33. hystrix:
  34. command:
  35. default:
  36. execution:
  37. isolation:
  38. thread:
  39. timeoutInMilliseconds: 305000
  40. #Ribbon
  41. ribbon:
  42. ReadTimeout: 300000
  43. ConnectTimeout: 5000
  44. #Zuul
  45. zuul:
  46. host:
  47. socket-timeout-millis: 300000
  48. connect-timeout-millis: 300000
  49. #Spring
  50. spring:
  51. jmx:
  52. enabled: false
  53. jpa:
  54. database-platform: org.hibernate.dialect.MySQL5Dialect
  55. hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
  56. show-sql: false
  57. #未知
  58. yihu:
  59. admin:
  60. client:
  61. advice:
  62. http: true
  63. ---
  64. spring:
  65. profiles: jwdev
  66. eureka-server: 172.19.103.33:8761
  67. ---
  68. spring:
  69. profiles: jwtest
  70. eureka-server: 172.19.103.33:8761