-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
37 lines (37 loc) · 871 Bytes
/
config.json
File metadata and controls
37 lines (37 loc) · 871 Bytes
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
{
"server": {
"listen_address": "0.0.0.0:6193",
"default_backend": "127.0.0.1:3000"
},
"tenants": {
"company_1": {
"host": "127.0.0.1",
"port": 3001,
"use_tls": false,
"description": "Backend da Empresa 1 - Desenvolvimento"
},
"company_2": {
"host": "127.0.0.1",
"port": 3002,
"use_tls": false,
"description": "Backend da Empresa 2 - Staging"
},
"company_3": {
"host": "backend3.example.com",
"port": 443,
"use_tls": true,
"description": "Backend da Empresa 3 - Produção com TLS"
},
"test_company": {
"host": "localhost",
"port": 8080,
"use_tls": false,
"description": "Backend de testes"
}
},
"settings": {
"config_reload_interval_seconds": 60,
"enable_health_checks": true,
"request_timeout_seconds": 30
}
}