1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- [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 数据表前缀
- ## 测试环境
- address = "172.20.45.129:4000" ## 本地
- #address = "172.17.162.29:14000" ## 线上
- dbname= "qyxy" ##
- username = "root"
- password= "=PDT49#80Z!RVv52_z"
- 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"
|