added caddy

This commit is contained in:
2026-06-17 11:20:36 +02:00
parent a2ccec4bb1
commit 8b1b9cedc2
7 changed files with 137 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
consume.narl.io {
# Backend API (routes are served under /api by the Rust app).
handle /api/* {
reverse_proxy backend:8080
}
# Everything else → SvelteKit (adapter-node) server.
handle {
reverse_proxy frontend:3000
}
}