-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json.example
More file actions
63 lines (63 loc) · 1.29 KB
/
config.json.example
File metadata and controls
63 lines (63 loc) · 1.29 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"server": {
"host": "127.0.0.1",
"port": 7000
},
"security": {
"enableServiceControl": true,
"enableTerminal": true,
"dangerousCommandWarnings": true,
"confirmDestructiveActions": true,
"rateLimit": {
"enabled": true,
"maxRequestsPerMinute": 60
}
},
"services": [
"xandminer",
"xandminerd",
"pod"
],
"prpc": {
"host": "127.0.0.1",
"port": 6000
},
"terminal": {
"shell": "/bin/bash",
"maxSessions": 3,
"dangerousCommands": [
"rm -rf /",
"dd if=",
"mkfs",
":(){ :|:& };:",
"> /dev/sda",
"chmod -R 777 /"
]
},
"authentication": {
"enabled": false,
"sessionSecret": "",
"sessionTimeout": 86400000,
"users": [],
"setupToken": ""
},
"centralManagement": {
"enabled": false,
"apiKey": "",
"centralUrl": "",
"autoConnect": false,
"metricsInterval": 30000,
"forceReconnectAfterMs": 180000,
"restartAfterMs": 600000,
"centralSshHost": "",
"centralSshUser": "ubuntu",
"sshKnownHostsPath": "",
"allowRemoteSshKeyInstall": false,
"ownerCentralUserId": "",
"ownerCentralEmail": "",
"ownerBoundAt": "",
"ownerBindingSource": "",
"unattendedUpgradesEnabled": true,
"remoteServiceControlEnabled": true
}
}