think/config/docker-prod-sample.yaml

79 lines
2.3 KiB
YAML
Raw Permalink Normal View History

2022-06-28 12:26:30 +00:00
# 开发环境配置
2022-05-22 08:51:32 +00:00
client:
port: 5001
assetPrefix: '/'
apiUrl: 'http://localhost:5002/api'
2022-06-28 12:26:30 +00:00
collaborationUrl: 'ws://localhost:5003'
2022-05-22 08:51:32 +00:00
# 以下为页面 meta 配置
seoAppName: '云策文档'
seoDescription: '云策文档是一款开源知识管理工具。通过独立的知识库空间,结构化地组织在线协作文档,实现知识的积累与沉淀,促进知识的复用与流通。'
2022-06-28 12:26:30 +00:00
seoKeywords: '云策文档,协作,文档,fantasticit,https://github.com/fantasticit/think'
2022-05-22 08:51:32 +00:00
# 预先连接的来源,空格分割(比如图片存储服务器)
dnsPrefetch: '//wipi.oss-cn-shanghai.aliyuncs.com'
# 站点地址http://think.codingit.cn/),一定要设置,否则会出现 cookie、跨域等问题
siteUrl: 'http://localhost:5001'
siteDomain: ''
2022-05-22 08:51:32 +00:00
server:
prefix: '/api'
port: 5002
collaborationPort: 5003
maxDocumentVersion: 20 # 最大版本记录数
logRetainDays: 3 # 日志保留天数,比如只保留近三天日志
enableRateLimit: true # 是否限流
rateLimitWindowMs: 60000 # 限流时间
rateLimitMax: 1000 # 单位限流时间内单个 ip 最大访问数量
2022-06-28 12:26:30 +00:00
email: # 邮箱服务,参考 http://help.163.com/09/1223/14/5R7P6CJ600753VB8.html?servCode=6010376 获取 SMTP 配置
host: ''
port: 465
user: ''
password: ''
admin:
2022-06-28 15:46:57 +00:00
name: 'admin' # 注意修改
password: 'admin' # 注意修改
email: 'admin@think.com' # 注意修改为真实邮箱地址
2022-05-22 08:51:32 +00:00
# 数据库配置
db:
mysql:
2022-06-28 12:26:30 +00:00
host: 'mysql-for-think'
username: 'think'
password: 'think'
2022-05-22 08:51:32 +00:00
database: 'think'
port: 3306
charset: 'utf8mb4'
timezone: '+08:00'
synchronize: true
redis:
2022-06-28 12:26:30 +00:00
host: 'redis-for-think'
2022-05-22 08:51:32 +00:00
port: '6379'
2022-06-28 12:26:30 +00:00
password: 'root'
2022-05-22 08:51:32 +00:00
# oss 文件存储服务
oss:
local:
enable: true
# 线上更改为服务端地址https://api.codingit.cn
server: 'http://localhost:5002'
# 以下为各厂商 sdk 配置,不要修改字段,填入值即可
tencent:
enable: false
config:
SecretId: ''
SecretKey: ''
Bucket: ''
Region: ''
2022-05-22 08:51:32 +00:00
aliyun:
enable: false
config:
accessKeyId: ''
accessKeySecret: ''
bucket: ''
https: true
region: ''
2022-05-22 08:51:32 +00:00
# jwt 配置
jwt:
secretkey: 'zA_Think+KNOWLEDGE+WIKI+DOCUMENTS@2022'
expiresIn: '6h'