You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
480 B
23 lines
480 B
/* |
|
** webdis.json -- Webdis configuration |
|
*/ |
|
{ |
|
daemonize: false, |
|
http_host: "127.0.0.1", |
|
http_port: 7379, |
|
redis_host: "127.0.0.1", |
|
redis_port: 6379, |
|
redis_auth: null, |
|
database: 0, |
|
verbosity: 3, |
|
logfile: "@l_prefix@/var/webdis/log/webdis.log", |
|
acl: [ |
|
{ |
|
disabled: [ "DEBUG" ] |
|
}, |
|
{ |
|
http_basic_auth: "user:password", |
|
enabled: [ "DEBUG" ] |
|
} |
|
] |
|
}
|
|
|