From 7451d5e125a0c363629e654c5107e43286f0a711 Mon Sep 17 00:00:00 2001 From: Akshat Jain Date: Thu, 11 Dec 2025 19:21:10 +0530 Subject: [PATCH] [INFRA-288] fix: add missing reverse proxy rule for bucket in Caddyfile.ce (#8319) * fix: add missing reverse proxy rule for bucket in Caddyfile.ce * fix: correct typo in reverse proxy address in Caddyfile.aio.ce --- apps/proxy/Caddyfile.aio.ce | 2 +- apps/proxy/Caddyfile.ce | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/proxy/Caddyfile.aio.ce b/apps/proxy/Caddyfile.aio.ce index 600b1b9d0..9cf6d8dd8 100644 --- a/apps/proxy/Caddyfile.aio.ce +++ b/apps/proxy/Caddyfile.aio.ce @@ -8,7 +8,7 @@ } handle /live/* { - reverse_proxy locahost:3005 + reverse_proxy localhost:3005 } handle /api/* { reverse_proxy localhost:3004 diff --git a/apps/proxy/Caddyfile.ce b/apps/proxy/Caddyfile.ce index 48a7177eb..9b9acc7b0 100644 --- a/apps/proxy/Caddyfile.ce +++ b/apps/proxy/Caddyfile.ce @@ -16,6 +16,7 @@ reverse_proxy /auth/* api:8000 reverse_proxy /{$BUCKET_NAME}/* plane-minio:9000 + reverse_proxy /{$BUCKET_NAME} plane-minio:9000 reverse_proxy /* web:3000 }