[INFRA-284] Add /static/ routes in Caddy Proxy files (#4998)

* refactor: update reverse proxy routes from /api/* to /static/* in multiple Caddyfiles

* refactor: update reverse proxy routes for /api/* and /static/* in multiple Caddyfiles
This commit is contained in:
Akshat Jain
2025-12-10 01:17:15 +05:30
committed by GitHub
parent 6da07f8db5
commit 29553259ee
3 changed files with 5 additions and 0 deletions
+3
View File
@@ -12,6 +12,9 @@
handle /auth/* {
reverse_proxy api:8000
}
handle /static/* {
reverse_proxy api:8000
}
handle /spaces/* {
reverse_proxy space:3000
}
+1
View File
@@ -10,6 +10,7 @@
reverse_proxy /api/* api:8000
reverse_proxy /graphql/* api:8000
reverse_proxy /auth/* api:8000
reverse_proxy /static/* api:8000
reverse_proxy /live/* live:3000
reverse_proxy /silo/* silo:3000
reverse_proxy /{$BUCKET_NAME} plane-minio:9000
+1
View File
@@ -10,6 +10,7 @@
reverse_proxy /api/* systemd-api:8000
reverse_proxy /graphql/* systemd-api:8000
reverse_proxy /auth/* systemd-api:8000
reverse_proxy /static/* systemd-api:8000
reverse_proxy /live/* systemd-live:3000
reverse_proxy /silo/* systemd-silo:3000
reverse_proxy /{$BUCKET_NAME} systemd-plane-minio:9000