12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [mongoqy] ## 181 链接
- host = "127.0.0.1:27001"
- # host = "172.17.4.181:27001"
- db = "mixdata"
- coll = ""
- username = ""
- password = ""
- # direct = true
- [cron] ## 定时任务
- # spec = "0 */1 * * * *" ## 5分钟执行一次
- spec = "0 03 7,12,15,20 * * *" ## 每天7,12,15,20点执行
- url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=0fc090e3-ceda-448d-8aba-d00a2994be7e"## 微信群通知机器人
- [mysql] ## 数据库MySQL
- address = "127.0.0.1:4001" ## 本地
- #address = "172.17.162.29:14000" ## 线上
- dbname= "qyxy" ##
- username = "wangchengcheng"
- password= "Wcc#20221209P"
- prefix = "" ## mysql 数据表前缀
- ## 日志
- # 日志
- [log]
- # 日志路径,为空将输出控制台
- logpath = ""
- # logpath = "logs/log.out"
- # log size (M)
- maxsize = 10
- # compress log
- compress = true
- # log save time (day)
- maxage = 7
- # save total log file total
- maxbackups = 10
- # log level
- loglevel = "debug"
- # text or json output
- format = "json"
|