From 232488e9a4f364cde17ec7ec83b55762196f1164 Mon Sep 17 00:00:00 2001 From: Satria Date: Fri, 6 Mar 2026 22:13:04 +0700 Subject: [PATCH] fix redirect loop --- modules/system/homelab/proxy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/homelab/proxy.nix b/modules/system/homelab/proxy.nix index 2496bfd..9391538 100644 --- a/modules/system/homelab/proxy.nix +++ b/modules/system/homelab/proxy.nix @@ -1,7 +1,7 @@ { homelab, lib, ... }: let base = "proxy.${homelab.domain}"; hosts = { - "server" = { dest = "http://server.dns.${homelab.domain}:8006"; auth = false; }; + "server" = { dest = "https://server.dns.${homelab.domain}:8006"; auth = false; }; "router" = { dest = "http://router.dns.${homelab.domain}:80"; auth = false; }; "home" = { dest = "http://home.dns.${homelab.domain}:8123"; auth = false; }; "nas" = { dest = "http://nas.dns.${homelab.domain}:80"; auth = false; };