From 07856094ca8e8bd02ee41727b7a0c5dda8f02f32 Mon Sep 17 00:00:00 2001 From: Nathan Date: Thu, 21 Aug 2025 09:11:04 -0500 Subject: [PATCH] try --- system-config/services/containers/traefik/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system-config/services/containers/traefik/default.nix b/system-config/services/containers/traefik/default.nix index e929ad2..c894d5e 100644 --- a/system-config/services/containers/traefik/default.nix +++ b/system-config/services/containers/traefik/default.nix @@ -105,7 +105,7 @@ routers = { homepageSecure = { entryPoints = [ "websecure" ]; - rule = "Host(`blunkall.us`) || Host(`www.blunkall.us`) || Host(`homebox.vpn`) && Path(`/blunkall`)"; + rule = "Host(`blunkall.us`) || Host(`www.blunkall.us`) || (Host(`homebox.vpn`) && PathPrefix(`/blunkall`))"; service = "homepage"; tls.certResolver = "cloudflare"; }; @@ -158,7 +158,7 @@ }; traefik = { entryPoints = [ "websecure" ]; - rule = "Host(`192.168.100.11`) || Host(`homebox.vpn`)"; + rule = "Host(`192.168.100.11`) || (Host(`homebox.vpn`) && PathPrefix(`/traefik`))"; service = "api@internal"; tls.certResolver = "cloudflare"; #middlewares = [ "authentik" ];