Fix routes for images

This commit is contained in:
2025-10-11 21:53:50 +02:00
parent 86e3399928
commit c283984479

View File

@@ -14,6 +14,12 @@ server {
rewrite ^/api/(.*)$ /$1 break; rewrite ^/api/(.*)$ /$1 break;
proxy_pass $API_URL; proxy_pass $API_URL;
} }
location /_ipx/_/api/ {
proxy_pass_request_headers on;
rewrite ^/_ipx/_/api/(.*)$ /$1 break;
proxy_pass $API_URL;
}
location / { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html;