123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- spring:
- profiles:
- active: ${activeProfile:local}
- servlet:
- multipart:
- max-file-size: -1
- maxRequestSize: -1
- server:
- port: 8808
- servlet:
- context-path: /fusion
- tomcat:
- max-http-form-post-size: -1
- logging:
- config: classpath:logback-spring.xml
- path: /home/backend/4dkankan_v4
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #开启sql日志
- 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: 10000
- ## 连接超时时间,单位为毫秒, 默认值为2000
- connect-timeout: 10000
- upload:
- type: oss
- query-path: https://4dkk.4dage.com/
- query-path-ss: https://laser-oss.4dkankan.com/
- oss:
- #point: http://oss-cn-shenzhen-internal.aliyuncs.com
- point: http://oss-cn-shenzhen-internal.aliyuncs.com
- key: LTAI5tJwboCj3r4vUNkSmbyX
- secrey: meDy7VYAWbg8kZCKsoUZcIYQxigWOy
- bucket: 4dkankan
- small: ?x-oss-process=image/resize,m_fill,h_%s,w_%s
- # Sa-Token配置
- sa-token:
- # token名称 (同时也是cookie名称)
- token-name: token
- # token有效期,单位s 默认30天, -1代表永不过期
- timeout: -1
- # token临时有效期 (指定时间内无操作就视为token过期) 单位: 秒
- activity-timeout: -1
- # 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录)
- is-concurrent: true
- # 在多人登录同一账号时,是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token)
- is-share: false
- # token风格
- token-style: uuid
- jwt-secret-key: XX#$%()(#*!()!KL<><MQLMNQNQJQK&sdfkjsdrow32234545fdf>?N<:{LWPW
- # 是否输出操作日志
- is-log: false
- fdkk:
- register:
- validCode: 2a22bac40f44af4d3b5fdc20ea706fc5
- geoquery:
- dataFilePath: /mnt/geoFile/GeoJSON.json
- saveWkbsFilePath: /mnt/geoFile/GeoJSON.wkbs
|