-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbproxy.json
More file actions
39 lines (39 loc) · 878 Bytes
/
bproxy.json
File metadata and controls
39 lines (39 loc) · 878 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
38
39
{
"port": 80,
"secure_port": 443,
"gzip_mime_types": ["text/css", "application/javascript", "application/x-javascript"],
"log_file": "bproxy.log",
"templates": {
"status_400_template": "",
"status_404_template": "templates/404.html",
"status_502_template": ""
},
"proxies": [
{
"hosts": [
"home.local.net",
"bterm.home.local.net"
],
"certificate_path": "test/certs/localhost2.crt",
"key_path": "test/certs/localhost2.key",
"ip": "127.0.0.1",
"port": 7500
},
{
"hosts": [
"jan.home.local.net"
],
"ip": "127.0.0.1",
"port": 4050
},
{
"hosts": [
"abstruse.home.local.net"
],
"certificate_path": "test/certs/localhost.crt",
"key_path": "test/certs/localhost.key",
"ip": "127.0.0.1",
"port": 6500
}
]
}