You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
587 B
JSON

{
"redis_host": "127.0.0.1",
"redis_port": 6379,
"redis_auth": null,
"http_host": "0.0.0.0",
"http_port": 7379,
"acl": [
{
"http_basic_auth": "user:password",
"disabled": ["DEBUG", "FLUSHDB", "FLUSHALL"],
"enabled": ["SET"]
},
{
"ip": "192.168.10.0/24",
"disabled": ["SET", "FLUSHDB", "FLUSHALL"],
"enabled": ["*"]
},
{
"http_basic_auth": "user:password",
"ip": "192.168.10.0/24",
"disabled": ["FLUSHDB", "FLUSHALL"],
"enabled": ["SET", "*"]
},
{
"ip": "0.0.0.0/0",
"disabled": ["SET"],
"enabled": ["SET"]
}
]
}