Skip to content

Commit 89994c5

Browse files
committed
chore: Caddyfileを追加し、リバースプロキシ設定を構成
1 parent 9097b52 commit 89994c5

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Caddyfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
admin off
3+
auto_https off
4+
}
5+
6+
ui.localhost:80 {
7+
handle /api/v1/* {
8+
reverse_proxy backend:1323
9+
}
10+
handle {
11+
reverse_proxy ui:80
12+
}
13+
}
14+
15+
dashboard.localhost:80 {
16+
handle /api/v1/* {
17+
reverse_proxy backend:1323
18+
}
19+
handle {
20+
reverse_proxy dashboard:80
21+
}
22+
}
23+
24+
localhost:80 {
25+
handle /api/v1/* {
26+
reverse_proxy backend:1323
27+
}
28+
handle {
29+
reverse_proxy ui:80
30+
}
31+
}

0 commit comments

Comments
 (0)