104 lines
2.9 KiB
YAML
104 lines
2.9 KiB
YAML
mysql:
|
||
dsn:
|
||
host: localhost
|
||
port: 3306
|
||
db: wordpress
|
||
user: root
|
||
password: root
|
||
charset: utf8mb4
|
||
pool:
|
||
# 最长空闲时间
|
||
connMaxIdleTime: 60
|
||
# 最大连接数
|
||
maxOpenConn: 100
|
||
# 最大空闲连接数
|
||
maxIdleConn: 10
|
||
# 连接的生命时长
|
||
connMaxLifetime: 236
|
||
Mail:
|
||
user: xx@163.com
|
||
alias: xx
|
||
pass:
|
||
host: smtp.163.com
|
||
port: 465
|
||
insecureSkipVerify: false
|
||
|
||
ssl:
|
||
cert: ""
|
||
key: ""
|
||
|
||
cacheTime:
|
||
# 静态资源缓存时间Cache-Control
|
||
cacheControl: 72h
|
||
# 最近文章缓存时间
|
||
recentPostCacheTime: 5m
|
||
# 分类缓存时间
|
||
categoryCacheTime: 5m
|
||
# 上下篇缓存时间
|
||
contextPostCacheTime: 10h
|
||
# 最近评论缓存时间
|
||
recentCommentsCacheTime: 5m
|
||
# 摘要缓存时间
|
||
digestCacheTime: 5m
|
||
# 文档列表id页缓存 包括默认列表、分类
|
||
postListCacheTime: 1h
|
||
# 搜索文档id缓存时间
|
||
searchPostCacheTime: 5m
|
||
# 月归档文章id缓存时间
|
||
monthPostCacheTime: 1h
|
||
# 文档数据缓存时间
|
||
postDataCacheTime: 1h
|
||
# 文章评论缓存时间
|
||
postCommentsCacheTime: 5m
|
||
# 定时清理缓存周期时间
|
||
crontabClearCacheTime: 5m
|
||
# 文档最大id缓存时间
|
||
maxPostIdCacheTime: 1h
|
||
# 用户信息缓存时间
|
||
userInfoCacheTime: 24h
|
||
# 单独评论缓存时间
|
||
commentsCacheTime: 24h
|
||
# 评论增量更新时间
|
||
commentsIncreaseUpdateTime: 30s
|
||
# 随机sleep时间
|
||
sleepTime: [ 1s,3s ]
|
||
# 摘要字数 >0截取指定字数 =0输出出空字符 <0为不截取,原样输出
|
||
digestWordCount: 300
|
||
# 摘要允许的标签 默认为<a><b><blockquote><br><cite><code><dd><del><div><dl><dt><em><h1><h2><h3><h4><h5><h6><i><img><li><ol><p><pre><span><strong><ul>
|
||
digestTag: "<a><b><blockquote><br><cite><code><dd><del><div><dl><dt><em><h1><h2><h3><h4><h5><h6><i><img><li><ol><p><pre><span><strong><ul>"
|
||
# 到达指定并发请求数时随机sleep
|
||
maxRequestSleepNum: 100
|
||
# 全局最大请求数,超过直接403
|
||
maxRequestNum: 500
|
||
# 单ip同时最大搜索请求数
|
||
singleIpSearchNum: 10
|
||
# 错误日志输出路径 stdout|stderr|file path 默认为stderr
|
||
logOutput: err.log
|
||
# Gzip
|
||
gzip: false
|
||
# 提交评论url host需为ip形式
|
||
postCommentUrl: http://127.0.0.1/wp-comments-post.php
|
||
# TrustIps
|
||
trustIps: []
|
||
# 分页器间隔数
|
||
paginationStep: 1
|
||
# 显示查询的sql语句
|
||
showQuerySql: false
|
||
# trust servername 信任的域名
|
||
trustServerNames: ["xy.test","blog.xy.test"]
|
||
# 主题 为空值为option template,没有就默认为twentyfifteen
|
||
theme: "twentyfifteen"
|
||
# 文档排序默认升序还是降序
|
||
postOrder: "desc"
|
||
# WordPress path
|
||
wpDir: "/var/www/html/wordpress"
|
||
# pprof route path 为空表示不开启pprof,否则为pprof的路由
|
||
pprof: "/debug/pprof"
|
||
# 要使用的程序插件名
|
||
plugins: ["enlightjs"]
|
||
# 插件存放路径
|
||
pluginPath: "./plugins"
|
||
# 列表页面post使用的插件
|
||
listPagePlugins: ["digest"]
|
||
# 额外引入的脚本 第一个为head 第二个为footer
|
||
externScript: ["",""] |