From e7ee8957f89c07f01f6b572782f2045fd2451a49 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 29 Jan 2026 12:23:57 +0100 Subject: [PATCH] tries to fix caddy --- hosts/dnsc-server/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/dnsc-server/default.nix b/hosts/dnsc-server/default.nix index d9debe7..0d47a91 100644 --- a/hosts/dnsc-server/default.nix +++ b/hosts/dnsc-server/default.nix @@ -133,20 +133,20 @@ services.caddy = { enable = true; virtualHosts."media.home.lan".extraConfig = '' - reverse_proxy localhost:8096 + reverse_proxy http://127.0.0.1:8096 tls internal ''; virtualHosts."stash.home.lan".extraConfig = '' - reverse_proxy localhost:9069 + reverse_proxy http://127.0.0.1:9069 tls internal ''; virtualHosts."finance.home.lan".extraConfig = '' encode gzip zstd - reverse_proxy localhost:9002 + reverse_proxy http://127.0.0.1:9002 tls internal ''; virtualHosts."photos.home.lan".extraConfig = '' - reverse_proxy localhost:9003 + reverse_proxy http://127.0.0.1:9003 tls internal ''; };