From c2839844793e6de91ed34b40caf7d620094ed575 Mon Sep 17 00:00:00 2001 From: glax Date: Sat, 11 Oct 2025 21:53:50 +0200 Subject: [PATCH] Fix routes for images --- nginx/templates/default.conf.template | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nginx/templates/default.conf.template b/nginx/templates/default.conf.template index cf526c7..0fbf133 100644 --- a/nginx/templates/default.conf.template +++ b/nginx/templates/default.conf.template @@ -14,6 +14,12 @@ server { rewrite ^/api/(.*)$ /$1 break; proxy_pass $API_URL; } + + location /_ipx/_/api/ { + proxy_pass_request_headers on; + rewrite ^/_ipx/_/api/(.*)$ /$1 break; + proxy_pass $API_URL; + } location / { root /usr/share/nginx/html;