1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| # web 服务配置
| serve:
| # 设定模式(debug/release/test,正式版改为release)
| id: "11010500011121000001"
| mode: "debug"
| port: "1400"
| host: "0.0.0.0"
| password: "basic1400server"
|
| # 日志配置
| log:
| path: logs
| level: debug
| max-age: 15
|
| # 外部服务
| forward:
| sync-server: "http://192.168.20.119:9696/api-a/device/alarm"
| report-server: "http://192.168.20.119:8007/data/api-v/device/inputData"
| report-interval: 30
|
| # 令牌桶限流配置
| rate-limit:
| # 填充一个令牌需要的时间间隔,毫秒
| fill-interval: 50
| # 桶容量
| capacity: 200
|
|