From 420e1deb7d60fa23d3086fb93c97aff16766f07f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=BE=D0=B2=20=D0=90=D1=80=D1=82?= =?UTF-8?q?=D0=B5=D0=BC?= Date: Mon, 20 Apr 2026 23:29:22 +0300 Subject: [PATCH] Remove unnecessary rewrite rule from Nginx configuration for API routing --- client/nginx/default.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/client/nginx/default.conf b/client/nginx/default.conf index 8e10fab..7651bae 100644 --- a/client/nginx/default.conf +++ b/client/nginx/default.conf @@ -14,7 +14,6 @@ server { location /api/ { set $backend http://server:3000; - rewrite ^/api/?(.*)$ /$1 break; proxy_pass $backend; proxy_http_version 1.1; proxy_set_header Host $host;