33 lines
523 B
YAML
33 lines
523 B
YAML
server:
|
|
port: 8000
|
|
read_timeout: 5
|
|
write_timeout: 5
|
|
idle_timeout: 5
|
|
|
|
# ES 服务器
|
|
es_server:
|
|
host: http://192.168.0.188:9200
|
|
|
|
# RATE 限流器
|
|
rate:
|
|
# 每秒注入容器中数量
|
|
limit: 50
|
|
# 每个IP每秒请求最大次数
|
|
capacity: 100
|
|
|
|
cache:
|
|
# memory | redis
|
|
type: memory
|
|
redis:
|
|
addr: "127.0.0.1:6379"
|
|
password:
|
|
db: 0
|
|
max_active: 0
|
|
max_idle: 1000
|
|
idle_timeout: 240
|
|
|
|
#LOG 日志管理
|
|
log:
|
|
file: log/logs.log
|
|
least_day: 7
|
|
level: debug # debug | info | warn | error |