Update NGINX ingress configuration for Seerr

This commit is contained in:
Alexandre
2026-02-19 13:58:18 +01:00
committed by GitHub
parent 5270d3c593
commit a8215dc011

View File

@@ -9,10 +9,10 @@ server {
# Based on https://github.com/seerr-team/seerr/blob/develop/docs/extending-seerr/reverse-proxy.mdx
location ^~ /seerr {
set $app 'seerr';
set $app '%%ingress_entry%%/seerr';
# Remove /seerr path to pass to the app
rewrite ^/seerr/?(.*)$ /$1 break;
rewrite ^%%ingress_entry%%/seerr/?(.*)$ /$1 break;
proxy_pass http://127.0.0.1:5055; # NO TRAILING SLASH
proxy_http_version 1.1;