From 5ac89db372091323d2fa235699634477d6aba259 Mon Sep 17 00:00:00 2001 From: ITQ Date: Thu, 8 May 2025 14:05:11 +0300 Subject: [PATCH] chore: added rewrite to properly serve docs --- infrastructure/nginx/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/nginx/nginx.conf b/infrastructure/nginx/nginx.conf index d6035c7..797fdbe 100644 --- a/infrastructure/nginx/nginx.conf +++ b/infrastructure/nginx/nginx.conf @@ -108,6 +108,7 @@ http { } location /docs { + rewrite ^/docs/(.*)$ /$1 break; proxy_pass http://docs:80; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;