From ce80bbeaf173ee7060ae9e0a585df072eb49f75a Mon Sep 17 00:00:00 2001 From: Marco Lusini Date: Mon, 1 Sep 2025 12:26:17 +0200 Subject: [PATCH 1/2] 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 --- guacamole/rootfs/etc/nginx/servers/ingress.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/guacamole/rootfs/etc/nginx/servers/ingress.conf b/guacamole/rootfs/etc/nginx/servers/ingress.conf index 8b448bd4b..d11766c32 100644 --- a/guacamole/rootfs/etc/nginx/servers/ingress.conf +++ b/guacamole/rootfs/etc/nginx/servers/ingress.conf @@ -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; } } From 40f5a78de2e15d5d7ee7344cd55dcc6db7ec8369 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 1 Sep 2025 12:59:22 +0200 Subject: [PATCH 2/2] Bump guacamole version to 1.6.0-5 --- guacamole/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/config.json b/guacamole/config.json index 2ad0a1c56..e0974f8c8 100644 --- a/guacamole/config.json +++ b/guacamole/config.json @@ -100,6 +100,6 @@ "slug": "guacamole", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", - "version": "1.6.0-4", + "version": "1.6.0-5", "video": true }