Add REMOTE_USER Header for auth-header authentication to ingress.conf

With this change, auth-header authentication works out of the box, using guacadin user.
Solves https://github.com/alexbelgium/hassio-addons/issues/1304
This commit is contained in:
Marco Lusini
2025-09-01 12:26:17 +02:00
committed by GitHub
parent 748b552ff6
commit ce80bbeaf1

View File

@@ -13,6 +13,7 @@ server {
proxy_set_header Connection "Upgrade";
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header REMOTE_USER guacadmin;
}
}