-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
79 lines (79 loc) · 1.93 KB
/
Copy pathconfig.example.json
File metadata and controls
79 lines (79 loc) · 1.93 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"servers": [
{
"name": "Web Server 1",
"hostname": "192.168.1.100",
"username": "admin",
"port": 22,
"use_key": true,
"key_path": "/home/user/.ssh/id_rsa",
"group": "production",
"description": "Primary web server"
},
{
"name": "Web Server 2",
"hostname": "192.168.1.101",
"username": "admin",
"port": 22,
"use_key": true,
"key_path": "/home/user/.ssh/id_rsa",
"group": "production",
"description": "Secondary web server"
},
{
"name": "Database Server",
"hostname": "192.168.1.200",
"username": "dbadmin",
"port": 22,
"use_key": true,
"key_path": "/home/user/.ssh/id_rsa",
"group": "database",
"description": "PostgreSQL server"
},
{
"name": "Windows Server",
"hostname": "192.168.1.50",
"username": "Administrator",
"port": 22,
"use_key": false,
"password": "encrypted_password_here",
"group": "windows",
"description": "Windows Server 2019 with OpenSSH"
},
{
"name": "Dev Server",
"hostname": "dev.example.com",
"username": "developer",
"port": 2222,
"use_key": true,
"key_path": "/home/user/.ssh/dev_key",
"group": "development",
"description": "Development and testing server"
}
],
"groups": {
"production": {
"color": "#ff0000",
"description": "Production servers - handle with care"
},
"database": {
"color": "#00ff00",
"description": "Database servers"
},
"windows": {
"color": "#0000ff",
"description": "Windows servers"
},
"development": {
"color": "#ffff00",
"description": "Development and testing environments"
}
},
"settings": {
"default_timeout": 30,
"max_parallel_connections": 10,
"auto_reconnect": true,
"save_command_history": true,
"command_history_size": 100
}
}