🔨 Remove auth header for direct access (#462)

This commit is contained in:
Paul Sinclair 2025-04-15 19:14:35 -04:00 committed by GitHub
parent 5720f7a0c8
commit eff65011d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@ server {
}
location %%ingress_entry%% {
rewrite ^%%ingress_entry%%/(.*) /$1 break;
proxy_set_header X-WEBAUTH-USER "";
proxy_pass http://backend/;
}

View file

@ -9,6 +9,7 @@ server {
}
location %%ingress_entry%% {
rewrite ^%%ingress_entry%%/(.*) /$1 break;
proxy_set_header X-WEBAUTH-USER "";
proxy_pass http://backend/;
}
}