This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Caddyfile.json
59 lines (59 loc) · 1.47 KB
/
Caddyfile.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
{
"apps": {
"http": {
"servers": {
"coder": {
"listen": [":80"],
"routes": [
{
"handle": [
{
"handler": "subroute",
"routes": [
{
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [
{
"dial": "api:80"
}
]
}
],
"match": [
{
"path": ["/graphql"]
}
]
},
{
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [
{
"dial": "web-ui:81"
}
]
}
],
"match": [
{
"path": ["/"]
}
]
}
]
}
]
}
],
"automatic_https": {
"disable": true
}
}
}
}
}
}