Add micro-api service to stack, route /api/* via Caddy

This commit is contained in:
2026-06-05 03:02:42 +02:00
parent 68fa063ccc
commit 27896021dc
2 changed files with 17 additions and 5 deletions
+4 -1
View File
@@ -3,9 +3,12 @@
}
:80 {
handle_path /status/* {
handle /status/* {
reverse_proxy uptime-kuma:3001
}
handle /api/* {
reverse_proxy micro-api:8000
}
handle {
reverse_proxy gitea:3000
}