18 lines
349 B
TOML
18 lines
349 B
TOML
# redis-proxy 连接配置模板
|
|
# 用法:复制为 redis-proxy.toml 后填入真实值(redis-proxy.toml 已在 .gitignore,不入库)
|
|
|
|
[server]
|
|
port = 3310
|
|
host = "0.0.0.0"
|
|
|
|
[pool]
|
|
idle_timeout_secs = 300
|
|
check_interval_secs = 60
|
|
|
|
[[connections]]
|
|
name = "flux_dev"
|
|
host = "<TEST_REDIS_HOST>"
|
|
port = 6379
|
|
password = "<REDIS_PASSWORD>"
|
|
db = 0
|