-
Notifications
You must be signed in to change notification settings - Fork 0
/
caddy.json
110 lines (110 loc) · 2.55 KB
/
caddy.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"apps": {
"http": {
"servers": {
"dummy_site": {
"listen": [
"127.0.0.1:8080"
],
"protocols": [
"h1",
"h2",
"h2c",
"h3"
],
"routes": [
{
"handle": [
{
"handler": "static_response",
"headers": {
"Location": [
"${REDIRECT_DOMAIN}"
]
},
"status_code": 302
}
]
}
]
}
}
},
"layer4": {
"servers": {
"signal_proxy": {
"listen": [
":443"
],
"routes": [
{
"handle": [
{
"handler": "tls"
}
]
},
{
"match": [
{
"tls": {
"sni": [
"chat.signal.org",
"ud-chat.signal.org",
"storage.signal.org",
"cdn.signal.org",
"cdn2.signal.org",
"cdn3.signal.org",
"cdsi.signal.org",
"contentproxy.signal.org",
"sfu.voip.signal.org",
"svr2.signal.org",
"updates.signal.org",
"updates2.signal.org",
"backend1.svr3.signal.org",
"backend2.svr3.signal.org",
"backend3.svr3.signal.org"
]
}
}
],
"handle": [
{
"handler": "proxy",
"upstreams": [
{
"dial": [
"{l4.tls.server_name}:443"
]
}
]
}
]
},
{
"handle": [
{
"handler": "proxy",
"upstreams": [
{
"dial": [
"127.0.0.1:8080"
]
}
]
}
]
}
]
}
}
},
"tls": {
"certificates": {
"automate": [
"${SIGNAL_PROXY_DOMAIN}"
]
}
}
}
}