From 5fe9768243f60da4ca9ec30a1316646a14d4eb38 Mon Sep 17 00:00:00 2001 From: Naveen Date: Sat, 12 Jul 2025 19:05:18 +0530 Subject: [PATCH] feat(infra): include `webhook` in proxy location --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index c3651437..93388f89 100644 --- a/nginx.conf +++ b/nginx.conf @@ -11,7 +11,7 @@ server { } # Proxy for backend - location ^/(auth|storage|record|workflow|robot|proxy|api-docs|api)(/|$) { + location ^/(auth|storage|record|workflow|robot|proxy|api-docs|api|webhook)(/|$) { proxy_pass http://localhost:8080; # change as per your setup proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;