From a682150219317ce451136c756ed5fdca602d9d49 Mon Sep 17 00:00:00 2001 From: Satria Date: Mon, 2 Mar 2026 16:02:42 +0700 Subject: [PATCH] change casing --- 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 929c86a..162f293 100644 --- a/modules/system/homelab/proxy.nix +++ b/modules/system/homelab/proxy.nix @@ -1,6 +1,6 @@ { homelab, lib, ... }: let base = "proxy.${homelab.domain}"; - proxyMappings = { + proxy-mappings = { "containers" = { dest = "http://localhost:5001"; auth = false; }; "auth" = { dest = "http://localhost:1411"; auth = false; }; "dns" = { dest = "http://localhost:8088"; auth = true; }; @@ -47,6 +47,6 @@ in { proxy_set_header X-Forwarded-Proto $scheme; ''; }; - }) proxyMappings; + }) proxy-mappings; }; } \ No newline at end of file