application.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.ip}/eureka/
  26. instance:
  27. prefer-ip-address: false
  28. instance-id: ${spring.cloud.client.ipAddress}:${server.port} #定制化在eureka中显示的名称
  29. #leaseRenewalIntervalInSeconds: 30 #心跳时间 默认30秒 一般不修改
  30. #Actuator
  31. management:
  32. security:
  33. enabled: false
  34. #Hystrix
  35. hystrix:
  36. command:
  37. default:
  38. execution:
  39. isolation:
  40. thread:
  41. timeoutInMilliseconds: 305000
  42. #Ribbon
  43. ribbon:
  44. ReadTimeout: 300000
  45. ConnectTimeout: 5000
  46. #Zuul
  47. zuul:
  48. host:
  49. socket-timeout-millis: 300000
  50. connect-timeout-millis: 300000
  51. #Spring
  52. spring:
  53. jmx:
  54. enabled: false
  55. jpa:
  56. database-platform: org.hibernate.dialect.MySQL5Dialect
  57. hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
  58. show-sql: false
  59. #未知
  60. yihu:
  61. admin:
  62. client:
  63. advice:
  64. http: true
  65. ---
  66. spring:
  67. profiles: jwdev
  68. eureka:
  69. server:
  70. ip: 172.19.103.33:8761
  71. #未知
  72. yihu:
  73. admin:
  74. client:
  75. advice:
  76. sql: false
  77. http: true
  78. server:
  79. ip: 127.0.0.1
  80. port: 8999