-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsockify.json.template
More file actions
37 lines (37 loc) · 977 Bytes
/
websockify.json.template
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"httpPort": 6080,
"webRoot": "/web",
"forwardings": [
{
"defaultVM": {
"tcpSocket": "192.168.178.45:5900",
"webSocket": "heaven",
"name": "Heaven"
},
"visitableVMs": [],
"restartableVMs": []
},
{
"defaultVM": {
"tcpSocket": "192.168.178.45:5901",
"webSocket": "kali",
"name": "Kali"
},
"visitableVMs": [],
"restartableVMs": ["Heaven"]
},
{
"defaultVM": {
"tcpSocket": "192.168.178.45:5902",
"webSocket": "lab",
"name": "IotLab"
},
"visitableVMs": [{
"tcpSocket": "192.168.178.45:5900",
"webSocket": "heaven",
"name": "Heaven"
}],
"restartableVMs": ["Kali"]
}
]
}