Merge pull request #2081 from met67/master

Add REMOTE_USER Header for auth-header authentication to ingress.conf
This commit is contained in:
Alexandre
2025-09-02 09:08:57 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -100,6 +100,6 @@
"slug": "guacamole", "slug": "guacamole",
"udev": true, "udev": true,
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "1.6.0-4", "version": "1.6.0-5",
"video": true "video": true
} }

View File

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