-
Notifications
You must be signed in to change notification settings - Fork 5
/
servers.json
36 lines (36 loc) · 1.12 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
{
"Servers": {
"1": {
"Name": "orderdb",
"Group": "Servers",
"Host": "order-db",
"Port": 5432,
"MaintenanceDB": "orderdb",
"Username": "postgresuser",
"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": "shipmentdb",
"Group": "Servers",
"Host": "shipment-db",
"Port": 5432,
"MaintenanceDB": "shipmentdb",
"Username": "postgresuser",
"SSLMode": "prefer",
"SSLCert": "<STORAGE_DIR>/.postgresql/postgresql.crt",
"SSLKey": "<STORAGE_DIR>/.postgresql/postgresql.key",
"SSLCompression": 0,
"Timeout": 10,
"UseSSHTunnel": 0,
"TunnelPort": "22",
"TunnelAuthentication": 0
}
}
}