1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
"Client": {},
"Server": {
"SSHBindAddress": "0.0.0.0",
"MaxConcurrentCats": 2,
"MaxConcurrentTails": 50,
"MaxConnections": 50,
"MapreduceLogFormat" : "default",
"HostKeyFile" : "cache/ssh_host_key",
"HostKeyBits" : 2048,
"Permissions": {
"Default": [
"readfiles:^/.*$",
"runcommands:!^/.*$"
],
"Users": {
"pbuetow": [
"readfiles:^/.*$"
"runcommands:^/.*$"
],
"jblake": [
"readfiles:^/tmp/foo.log$",
"readfiles:^/.*$",
"readfiles:!^/tmp/bar.log$"
]
}
}
},
"Common": {
"LogDir" : "log",
"CacheDir" : "cache",
"LogStrategy": "daily",
"SSHPort": 2222,
"DebugEnable": false,
"PPerfEnable": false,
"PPerfPort": 6060,
"PPerfBindAddress": "0.0.0.0",
"ExperimentalFeaturesEnable": false
}
}
|