-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgomount.json
More file actions
39 lines (39 loc) · 1.27 KB
/
gomount.json
File metadata and controls
39 lines (39 loc) · 1.27 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
{
"_comment": "DEMO CONFIGURATION - DO NOT USE IN PRODUCTION! All entries are fake examples for testing purposes only.",
"mountpoint": "/tmp/gomount-demo",
"targets": [
{
"name": "demo-server-1",
"host": "demo.example.com",
"user": "demo-user",
"path": "/home/demo-user/fake-directory",
"port": 22,
"description": "Fake SSH server for demo purposes - will not work"
},
{
"name": "test-server-does-not-exist",
"host": "nonexistent-server.demo.local",
"user": "test-user-fake",
"path": "/demo/path/that/does/not/exist",
"port": 2222,
"description": "Another fake server entry for testing configuration"
},
{
"name": "example-production-server",
"host": "production.example-company.com",
"user": "sample-admin",
"path": "/var/www/demo-site",
"port": 22,
"description": "Sample production-like server (FAKE - for demo only)"
},
{
"name": "dev-environment-mock",
"host": "dev.localhost.invalid",
"user": "developer",
"path": "/home/developer/projects",
"port": 2200,
"description": "Mock development environment entry"
}
],
"warning": "ALL SERVERS AND CREDENTIALS IN THIS FILE ARE FAKE AND FOR DEMONSTRATION PURPOSES ONLY"
}