-
Notifications
You must be signed in to change notification settings - Fork 852
/
Copy pathservers.json
53 lines (52 loc) · 1.66 KB
/
servers.json
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
{
"Servers": {
"1": {
"Name": "orderdb",
"Group": "Servers",
"Host": "order-db",
"Port": 5432,
"MaintenanceDB": "orderdb",
"Username": "orderuser",
"SSLMode": "prefer",
"SSLCert": "<STORAGE_DIR>/.postgresql/postgresql.crt",
"SSLKey": "<STORAGE_DIR>/.postgresql/postgresql.key",
"SSLCompression": 0,
"Timeout": 10,
"UseSSHTunnel": 0,
"TunnelPort": "22",
"TunnelAuthentication": 0
},
"2": {
"Name": "customerdb",
"Group": "Servers",
"Host": "customer-db",
"Port": 5432,
"MaintenanceDB": "customerdb",
"Username": "customeruser",
"SSLMode": "prefer",
"SSLCert": "<STORAGE_DIR>/.postgresql/postgresql.crt",
"SSLKey": "<STORAGE_DIR>/.postgresql/postgresql.key",
"SSLCompression": 0,
"Timeout": 10,
"UseSSHTunnel": 0,
"TunnelPort": "22",
"TunnelAuthentication": 0
},
"3": {
"Name": "paymentdb",
"Group": "Servers",
"Host": "payment-db",
"Port": 5432,
"MaintenanceDB": "paymentdb",
"Username": "paymentuser",
"SSLMode": "prefer",
"SSLCert": "<STORAGE_DIR>/.postgresql/postgresql.crt",
"SSLKey": "<STORAGE_DIR>/.postgresql/postgresql.key",
"SSLCompression": 0,
"Timeout": 10,
"UseSSHTunnel": 0,
"TunnelPort": "22",
"TunnelAuthentication": 0
}
}
}