12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- server:
- port: 8808
- servlet:
- context-path: /fusion
- tomcat:
- max-http-form-post-size: -1
- spring:
- datasource:
- name: druidDataSource
- type: com.alibaba.druid.pool.DruidDataSource
- druid:
- url: jdbc:mysql://127.0.0.1/fd_fusion?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true
- username: root
- password: 123456
- redis:
- host: 120.24.144.164
- port: 6379
- timeout: 6000ms
- password:
- jedis:
- pool:
- max-active: 10 #连接池最大连接数(使用负值表示没有限制)
- max-idle: 10 # 连接池中的最大空闲连接
- min-idle: 5 # 连接池中的最小空闲连接
- max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
- lettuce:
- shutdown-timeout: 0ms
- logging:
- config: classpath:logback-spring.xml
- path: /mnt/4Dkankan/v4/logs
- 4dkk:
- laserService:
- #深时(激光)地址 生产环境:https://laser.4dkankan.com/
- basePath: http://uat-laser.4dkankan.com
- port: 80
- fdService:
- #官网生产环境:https://www.4dkankan.com
- basePath: http://test.4dkankan.com
- port: 80
- overallService:
- #全景看看生产环境 host: https://www.4dkankan.com/qjkankan
- basePath: http://test.4dkankan.com/qjkankan
- port: 80
- forest:
- ## 日志总开关,打开/关闭Forest请求/响应日志(默认为 true)
- log-enabled: true
- ## 打开/关闭Forest请求日志(默认为 true)
- log-request: true
- ## 打开/关闭Forest响应状态日志(默认为 true)
- log-response-status: true
- ## 打开/关闭Forest响应内容日志(默认为 false)
- log-response-content: true
- ## 请求超时时间,单位为毫秒, 默认值为3000
- timeout: 3000000
- ## 连接超时时间,单位为毫秒, 默认值为2000
- connect-timeout: 3000000
|