first commit
This commit is contained in:
commit
97243ded8e
|
@ -0,0 +1,62 @@
|
|||
# toml配置文件
|
||||
# Wiki:https://github.com/toml-lang/toml
|
||||
ServiceName = "snow"
|
||||
Debug = true
|
||||
Env = "local" # local-本地 develop-开发 beta-预发布 production-线上
|
||||
PrometheusCollectEnable = true
|
||||
SkyWalkingOapServer = "127.0.0.1:11800"
|
||||
|
||||
[Log]
|
||||
Handler = "file"
|
||||
Dir = "./logs"
|
||||
Level = "info"
|
||||
|
||||
[Db]
|
||||
Driver = "mysql"
|
||||
|
||||
[Db.Option]
|
||||
MaxConns = 128
|
||||
MaxIdle = 32
|
||||
IdleTimeout = 180 # second
|
||||
Charset = "utf8mb4"
|
||||
ConnectTimeout = 3 # second
|
||||
|
||||
[Db.Master]
|
||||
Host = "127.0.0.1"
|
||||
Port = 3306
|
||||
User = "root"
|
||||
Password = "66688866"
|
||||
DBName = "auto_monitor"
|
||||
|
||||
[[Db.Slaves]] # 支持多个从库
|
||||
Host = "127.0.0.1"
|
||||
Port = 3306
|
||||
User = "root"
|
||||
Password = "123456"
|
||||
DBName = "test"
|
||||
|
||||
[Api]
|
||||
Host = "0.0.0.0"
|
||||
Port = 8999
|
||||
|
||||
[Cache]
|
||||
Driver = "redis"
|
||||
|
||||
[Redis.Master]
|
||||
Host = "127.0.0.1"
|
||||
Port = 6379
|
||||
#Password = ""
|
||||
#DB = 0
|
||||
|
||||
#[Redis.Option]
|
||||
#MaxIdle = 64
|
||||
#MaxConns = 256
|
||||
#IdleTimeout = 180 # second
|
||||
#ConnectTimeout = 1
|
||||
#ReadTimeout = 1
|
||||
#WriteTimeout = 1
|
||||
|
||||
[AliMns]
|
||||
Url = ""
|
||||
AccessKeyId = ""
|
||||
AccessKeySecret = ""
|
Loading…
Reference in New Issue