From 6035ecbbbb267b16172ed0c6b890606da45af47b Mon Sep 17 00:00:00 2001 From: glax Date: Sat, 11 Oct 2025 21:55:56 +0200 Subject: [PATCH] proxy swagger --- nginx/templates/default.conf.template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx/templates/default.conf.template b/nginx/templates/default.conf.template index 0fbf133..4176f50 100644 --- a/nginx/templates/default.conf.template +++ b/nginx/templates/default.conf.template @@ -21,6 +21,11 @@ server { proxy_pass $API_URL; } + location /swagger { + proxy_pass_request_headers on; + proxy_pass $API_URL; + } + location / { root /usr/share/nginx/html; index index.html index.htm;