-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.json
More file actions
54 lines (54 loc) · 1.17 KB
/
config.sample.json
File metadata and controls
54 lines (54 loc) · 1.17 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
[
{
"name": "mongodb",
"type": "L",
"localPort": 27017,
"localHost": "0.0.0.0",
"remotePort": 27017,
"remoteHost": "0.0.0.0",
"server": {
"host": "final-host-ip",
"port": 22,
"username": "user",
"authType": "KEY",
"password": "",
"key": "/etc/autossh/id_rsa",
"passphrase": "passphrase",
"jump": {
"host": "jump-host-ip",
"port": 22,
"username": "user",
"authType": "KEY",
"password": "",
"key": "/etc/autossh/id_rsa",
"passphrase": "passphrase"
}
}
},
{
"name": "mysql",
"type": "R",
"localPort": 3306,
"localHost": "0.0.0.0",
"remotePort": 3306,
"remoteHost": "0.0.0.0",
"server": {
"host": "final-host-ip",
"port": 22,
"username": "user",
"authType": "KEY",
"password": "",
"key": "/etc/autossh/id_rsa",
"passphrase": "passphrase",
"jump": {
"host": "jump-host-ip",
"port": 22,
"username": "user",
"authType": "KEY",
"password": "",
"key": "/etc/autossh/id_rsa",
"passphrase": "passphrase"
}
}
}
]