From b4bfacdc44c9fe0a349bb4d4e35cc5dd2c8a46e8 Mon Sep 17 00:00:00 2001 From: Satria Date: Sun, 15 Mar 2026 11:06:50 +0700 Subject: [PATCH] enable auth on dockge --- modules/system/homelab/proxy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/homelab/proxy.nix b/modules/system/homelab/proxy.nix index 3edaf2a..0eb1e49 100644 --- a/modules/system/homelab/proxy.nix +++ b/modules/system/homelab/proxy.nix @@ -5,10 +5,10 @@ "router" = { dest = "http://router.dns.${homelab.domain}:80"; auth = false; }; "home" = { dest = "http://home.dns.${homelab.domain}:8123"; auth = false; }; - "dynamic" = { dest = "http://127.0.0.1:8082"; auth = true; }; + "containers" = { dest = "http://localhost:5001"; auth = true; }; + "dynamic" = { dest = "http://localhost:8082"; auth = true; }; "dns" = { dest = "http://localhost:8088"; auth = true; }; - "containers" = { dest = "http://localhost:5001"; auth = false; }; "gallery" = { dest = "http://localhost:2283"; auth = false; }; "remote" = { dest = "http://localhost:8085"; auth = false; }; "search" = { dest = "http://localhost:8091"; auth = false; };