-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaddyfile
95 lines (80 loc) · 1.24 KB
/
Caddyfile
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
(serve) {
try_files {path} /index.html
file_server
}
:8080 {
# proxy products service
handle /_/* {
strip_prefix _
reverse_proxy localhost:5000
}
handle /ui/navbar/* {
strip_prefix ui/navbar
reverse_proxy localhost:8081
}
handle /ui/landing/* {
strip_prefix ui/landing
reverse_proxy localhost:8082
}
handle /ui/browse/* {
strip_prefix ui/browse
reverse_proxy localhost:8083
}
handle /ui/product/* {
strip_prefix ui/product
reverse_proxy localhost:8084
}
handle /ui/basket/* {
strip_prefix ui/basket
reverse_proxy localhost:8085
}
handle /ui/footer/* {
strip_prefix ui/footer
reverse_proxy localhost:8086
}
handle /assets/* {
root orchestrator/assets
strip_prefix assets
file_server
}
handle {
root orchestrator/www
import serve
}
}
:8081 {
handle {
root apps/navbar/www
import serve
}
}
:8082 {
handle {
root apps/landing/www
import serve
}
}
:8083 {
handle {
root apps/browse/www
import serve
}
}
:8084 {
handle {
root apps/product/www
import serve
}
}
:8085 {
handle {
root apps/basket/www
import serve
}
}
:8086 {
handle {
root apps/footer/www
import serve
}
}