| | |
| | | # 日志文件配置 |
| | | logging: |
| | | file: |
| | | name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径 |
| | | name: logs/${spring.application.name}.log # 日志文件名,相对于项目根目录 |
| | | level: |
| | | # 配置自己写的 MyBatis Mapper 打印日志 |
| | | cn.iocoder.yudao.module.bpm.dal.mysql: debug |
| | |
| | | key-prefix: wa # Redis Key 的前缀 |
| | | http-client-type: HttpComponents # 采用 HttpComponents(HttpClient 5)请求微信小程序平台 |
| | | |
| | | --- #################### 芋道相关配置 #################### |
| | | --- #################### 超级管理员相关配置 #################### |
| | | |
| | | # 芋道配置项,设置当前项目所有自定义的配置 |
| | | # 超级管理员配置项,设置当前项目所有自定义的配置 |
| | | yudao: |
| | | captcha: |
| | | enable: false # 本地环境,暂时关闭图片验证码,方便登录等接口的测试; |
| | |
| | | storage: # 文件上传配置 |
| | | path: D:/uploads # 文件存储根目录(按实际服务器路径配置) |
| | | url-prefix: /admin-api/system/storage-blob # URL路径前缀 |
| | | domain: http://localhost:48080 # 域名前缀(按实际域名配置) |
| | | domain: http://192.168.0.10:48080 # 域名前缀(按实际域名配置) |
| | | expired: 120 # token过期时间(分钟) |
| | | use-limit: 10 # token使用次数上限 |
| | | jwt-secret: abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG # JWT密钥(至少32字符) |