application.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. server:
  2. port: 8808
  3. servlet:
  4. context-path: /fusion
  5. tomcat:
  6. max-http-form-post-size: -1
  7. spring:
  8. datasource:
  9. name: druidDataSource
  10. type: com.alibaba.druid.pool.DruidDataSource
  11. druid:
  12. url: jdbc:mysql://127.0.0.1/fd_fusion?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true
  13. username: root
  14. password: 123456
  15. redis:
  16. host: 120.24.144.164
  17. port: 6379
  18. timeout: 6000ms
  19. password:
  20. jedis:
  21. pool:
  22. max-active: 10 #连接池最大连接数(使用负值表示没有限制)
  23. max-idle: 10 # 连接池中的最大空闲连接
  24. min-idle: 5 # 连接池中的最小空闲连接
  25. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  26. lettuce:
  27. shutdown-timeout: 0ms
  28. logging:
  29. config: classpath:logback-spring.xml
  30. path: /mnt/4Dkankan/v4/logs
  31. 4dkk:
  32. laserService:
  33. #深时(激光)地址 生产环境:https://laser.4dkankan.com/
  34. basePath: http://uat-laser.4dkankan.com
  35. port: 80
  36. fdService:
  37. #官网生产环境:https://www.4dkankan.com
  38. basePath: http://test.4dkankan.com
  39. port: 80
  40. overallService:
  41. #全景看看生产环境 host: https://www.4dkankan.com/qjkankan
  42. basePath: http://test.4dkankan.com/qjkankan
  43. port: 80
  44. forest:
  45. ## 日志总开关,打开/关闭Forest请求/响应日志(默认为 true)
  46. log-enabled: true
  47. ## 打开/关闭Forest请求日志(默认为 true)
  48. log-request: true
  49. ## 打开/关闭Forest响应状态日志(默认为 true)
  50. log-response-status: true
  51. ## 打开/关闭Forest响应内容日志(默认为 false)
  52. log-response-content: true
  53. ## 请求超时时间,单位为毫秒, 默认值为3000
  54. timeout: 3000000
  55. ## 连接超时时间,单位为毫秒, 默认值为2000
  56. connect-timeout: 3000000