123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- # 项目相关配置
- fdkk:
- # 文件路径 示例( Windows配置D:/fdkk/uploadPath,Linux配置 /home/fdkk/uploadPath)
- profile: ${PROFILE_PATH}
- #算法软件目录
- binPath: ${BIN_PATH}
- defaultFolder: datav1
- # 是否本地化部署:开启此项会使用minio文件管理
- isLocalization: true
- # 是否使用文件存储系统
- isBucket: false
- #是否使用软连接
- isLink: false
- #算法软件目录
- buildCallPath: ${BUILD_CALL_PATH}
- aliyun:
- oss:
- env: dev
- endpoint: "1"
- internal-endpoint: "1"
- access-key-id: "1"
- access-key-secret: "1"
- bucket: laser-data
- bucket-custom-domain:
- laser-data: 1
- minio:
- oss:
- env: dev
- minio-url: 1
- internal-minio-url: 1
- minio-name: 1
- minio-pass: 1
- bucket: laser-data
- bucket-custom-domain:
- laser-data: 1
- server:
- port: 9101
- servlet:
- context-path: /
- tomcat:
- max-http-form-post-size: -1
- spring:
- datasource:
- name: druidDataSource
- type: com.alibaba.druid.pool.DruidDataSource
- druid:
- druid:
- url: jdbc:mysql://127.0.0.1:3307/laser?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8
- username: root
- password: laser
- driver-class-name: com.mysql.cj.jdbc.Driver
- filters: stat,wall,config
- max-active: 100
- initial-size: 2
- max-wait: 60000
- min-idle: 1
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 300000
- validation-query: select 'x'
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- pool-prepared-statements: true
- max-open-prepared-statements: 50
- max-pool-prepared-statement-per-connection-size: 20
- redis:
- host: 127.0.0.1
- port: 16379
- 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
- fdkk:
- maxHistory: 1
- level: Info
- path: ${FDMGEA_HOME}/bin/log
- main:
- url: https://test.4dkankan.com
- scene:
- url: show.html?m=
- pro:
- url: showProMobile.html?m=
- new:
- url: smg.html?m=
- ##场景下载相关-----------------------------------------start
- zip:
- nThreads: 10
- path:
- v4school: ${PROFILE_PATH}v4local
- v3school:
- source-local: ${PROFILE_PATH}offlinev4/%s/%s
- zip-root: wwwroot/
- zip-local: ${PROFILE_PATH}offlinev4/%s.zip
- zip-oss: downloads/scenes/%s.zip
- download:
- config:
- public-url: http://127.0.0.1
- resource-url:
- exe-name: start-browser.bat
- exe-content: | # | 表示不转义特殊字符
- taskkill /f /t /im http.exe
- start http://127.0.0.1:5001/spg.html?m=%s^&lang=%s
- http.exe -nc -p 5001 -r wwwroot
- exe-content-v3: | # | 表示不转义特殊字符
- taskkill /f /t /im http.exe
- start http://127.0.0.1:5001/spc.html?m=%s^&lang=%s
- http.exe -nc -p 5001 -r wwwroot
- url:
- v3:
- getInfo:
- ##场景下载相关-----------------------------------------end
- inner:
- customToken:
|