123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- domain:
- 4dkk: https://testeur.4dkankan.com
- logging:
- config: classpath:logback-spring.xml
- fdkk:
- level: INFO
- maxHistory: 180
- file:
- path: /root/log/${project.name}_log
- level:
- com:
- gis: debug
- filestorage:
- active: aws
- aws:
- endpoint: http://testeurs3.4dkankan.com
- internal-endpoint: http://testeurs3.4dkankan.com
- access-key: AKIAWCV5QFZ3ZNELKYUY
- access-key-secret: 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
- bucket: test-4dkankan
- bucket-custom-domain:
- test-4dkankan: https://testeurs3.4dkankan.com
- full-path: true
- server:
- domain: ''
- file:
- path: /mnt/${project.name}_data/
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- druid:
- initial-size: 5
- max-active: 20
- max-evictable-idle-time-millis: 90000
- max-wait: 60000
- min-evictable-idle-time-millis: 30000
- min-idle: 10
- password: JK20220120%JIK
- stat-view-servlet:
- enabled: true
- test-on-borrow: false
- test-on-return: false
- test-while-idle: true
- time-between-eviction-runs-millis: 60000
- url: jdbc:mysql://127.0.0.1:3306/${project.name}?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8
- username: root
- validation-query: SELECT 1 FROM DUAL
- web-stat-filter:
- enabled: true
- type: com.alibaba.druid.pool.DruidDataSource
- rabbitmq:
- host: 127.0.0.1
- port: 5672
- username: admin
- password: 123456
- virtual-host: 4dkankan
- connection-timeout: 0
- listener:
- simple:
- prefetch: 1
- max-concurrency: 2
- acknowledge-mode: manual #开启消费者手动确认
- #开启消息投递确认机制
- publisher-confirm-type: correlated
- redis:
- database: 0
- host: 127.0.0.1
- jedis:
- pool:
- max-active: 8
- max-idle: 8
- max-wait: -1ms
- min-idle: 0
- password: 'redis123ROOT.'
- port: 6379
- timeout: 3000ms
- servlet:
- multipart:
- location: /mnt
- tlog:
- enable-invoke-time-print: true
- forest:
- backend: okhttp3 # 后端HTTP框架(默认为 okhttp3)
- max-connections: 1000 # 连接池最大连接数(默认为 500)
- max-route-connections: 500 # 每个路由的最大连接数(默认为 500)
- timeout: 50000 # 请求超时时间,单位为毫秒(默认为 3000)
- connect-timeout: 20000 # 连接超时时间,单位为毫秒(默认为 timeout)
- read-timeout: 50000 # 数据读取超时时间,单位为毫秒(默认为 timeout)
- max-retry-count: 0 # 请求失败后重试次数(默认为 0 次不重试)
- ssl-protocol: SSLv3 # 单向验证的HTTPS的默认SSL协议(默认为 SSLv3)
- logEnabled: true # 打开或关闭日志(默认为 true)
- log-request: true # 打开/关闭Forest请求日志(默认为 true)
- log-response-status: true # 打开/关闭Forest响应状态日志(默认为 true)
- log-response-content: true # 打开/关闭Forest响应内容日志(默认为 false)
- base-address-scheme: https
- base-address-host: testeur.4dkankan.com
- queue:
- scene-queue: queue-pano-scene
- do-slice-queue: queue-do-slice
- relics-update-name-queue: relics-update-name-queue
- config:
- bashPath: ${project.name}/
|