Fix rewrite rule in ingress.conf

This commit is contained in:
Alexandre
2026-02-20 16:07:08 +01:00
committed by GitHub
parent ad96f5d5af
commit 3dd4b05e0e

View File

@@ -5,7 +5,7 @@ server {
location / {
proxy_pass http://localhost:8080/;
rewrite ^%%ingress_entry%%/(.*)$ /$1 break;
rewrite ^%%ingress_entry%%/?(.*)$ /$1 break;
# Disable buffering (required for SSE and sub_filter)
proxy_buffering off;