Reformat JSON config files, use spaces instead of tabs

This should have been done long ago.
master
Nicolas Favre-Felix 1 year ago
parent 546d730985
commit 997932f1eb
No known key found for this signature in database
GPG Key ID: C04E7AA8B6F73372

@ -1,34 +1,33 @@
{ {
"redis_host": "127.0.0.1", "redis_host": "127.0.0.1",
"redis_port": 6379,
"redis_auth": null,
"redis_port": 6379, "http_host": "0.0.0.0",
"redis_auth": null, "http_port": 7379,
"http_host": "0.0.0.0", "threads": 5,
"http_port": 7379, "pool_size": 20,
"threads": 5, "daemonize": false,
"pool_size": 20, "websockets": false,
"daemonize": false, "database": 0,
"websockets": false,
"database": 0, "acl": [
{
"disabled": [ "DEBUG" ]
},
{
"http_basic_auth": "user:password",
"enabled": [ "DEBUG" ]
}
],
"acl": [ "hiredis": {
{ "keep_alive_sec": 15
"disabled": ["DEBUG"] },
},
{ "verbosity": 4,
"http_basic_auth": "user:password", "logfile": "webdis.log"
"enabled": ["DEBUG"]
}
],
"hiredis": {
"keep_alive_sec": 15
},
"verbosity": 4,
"logfile": "webdis.log"
} }

@ -1,31 +1,31 @@
{ {
"redis_host": "127.0.0.1", "redis_host": "127.0.0.1",
"redis_port": 6379,
"redis_auth": null,
"redis_port": 6379, "http_host": "0.0.0.0",
"redis_auth": null, "http_port": 7379,
"http_host": "0.0.0.0", "threads": 4,
"http_port": 7379,
"threads": 4,
"daemonize": true, "daemonize": true,
"database": 0, "database": 0,
"acl": [ "acl": [
{ {
"disabled": ["DEBUG"] "disabled": [ "DEBUG" ]
}, },
{
"http_basic_auth": "user:password",
"enabled": [ "DEBUG" ]
}
],
{ "hiredis": {
"http_basic_auth": "user:password", "keep_alive_sec": 15
"enabled": ["DEBUG"] },
}
],
"hiredis": {
"keep_alive_sec": 15
},
"verbosity": 3, "verbosity": 3,
"logfile": "/var/log/webdis.log" "logfile": "/var/log/webdis.log"
} }

Loading…
Cancel
Save