think/config/dev.yaml

56 lines
1.6 KiB
YAML
Raw Normal View History

2022-02-20 11:51:55 +00:00
# 开发环境配置
2022-05-21 06:56:50 +00:00
client:
port: 5001
assetPrefix: '/'
apiUrl: 'http://localhost:5002/api'
collaborationUrl: 'ws://localhost:5003'
2022-05-22 02:33:08 +00:00
# 以下为页面 meta 配置
seoAppName: '云策文档'
seoDescription: '云策文档是一款开源知识管理工具。通过独立的知识库空间,结构化地组织在线协作文档,实现知识的积累与沉淀,促进知识的复用与流通。'
seoKeywords: '云策文档,协作,文档,前端面试题,fantasticit,https://github.com/fantasticit/think'
# 预先连接的来源,空格分割(比如图片存储服务器)
dnsPrefetch: '//wipi.oss-cn-shanghai.aliyuncs.com'
2022-05-24 09:33:30 +00:00
# 站点地址http://think.codingit.cn/),一定要设置,否则会出现 cookie、跨域等问题
siteUrl: 'http://localhost:5001'
siteDomain: ''
2022-05-21 06:56:50 +00:00
2022-02-20 11:51:55 +00:00
server:
2022-03-21 08:46:27 +00:00
prefix: '/api'
2022-05-21 06:56:50 +00:00
port: 5002
2022-02-20 11:51:55 +00:00
collaborationPort: 5003
2022-05-18 13:14:18 +00:00
maxDocumentVersion: 20 # 最大版本记录数
2022-05-21 06:39:56 +00:00
logRetainDays: 3 # 日志保留天数,比如只保留近三天日志
2022-05-26 05:18:36 +00:00
enableRateLimit: true # 是否限流
rateLimitWindowMs: 60000 # 限流时间
2022-05-26 05:21:59 +00:00
rateLimitMax: 1000 # 单位限流时间内单个 ip 最大访问数量
2022-02-20 11:51:55 +00:00
# 数据库配置
db:
mysql:
2022-03-21 08:46:27 +00:00
host: '127.0.0.1'
username: 'root'
password: 'root'
database: 'think'
2022-02-20 11:51:55 +00:00
port: 3306
2022-03-21 08:46:27 +00:00
charset: 'utf8mb4'
timezone: '+08:00'
2022-02-20 11:51:55 +00:00
synchronize: true
2022-03-29 14:23:41 +00:00
redis:
host: '127.0.0.1'
port: '6379'
password: 'root'
2022-02-20 11:51:55 +00:00
# oss 文件存储服务
oss:
aliyun:
2022-03-25 09:17:10 +00:00
accessKeyId: ''
accessKeySecret: ''
bucket: ''
2022-02-20 11:51:55 +00:00
https: true
2022-03-25 09:17:10 +00:00
region: ''
2022-02-20 11:51:55 +00:00
# jwt 配置
jwt:
2022-03-21 08:46:27 +00:00
secretkey: 'zA_Think+KNOWLEDGE+WIKI+DOCUMENTS@2022'
expiresIn: '6h'