From 3099056e2a3a1fab2b0174732bde70a2d541a632 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Mon, 5 Jan 2026 17:47:11 +0100 Subject: [PATCH] fix acme host --- nixosConfigurations/hetzner-vpn2/blog.nix | 1 + nixosConfigurations/hetzner-vpn2/headscale.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/nixosConfigurations/hetzner-vpn2/blog.nix b/nixosConfigurations/hetzner-vpn2/blog.nix index 367ef2b..da05683 100644 --- a/nixosConfigurations/hetzner-vpn2/blog.nix +++ b/nixosConfigurations/hetzner-vpn2/blog.nix @@ -14,6 +14,7 @@ in nginx.virtualHosts = { "zerforschen.plus" = { enableACME = true; + useACMEHost = "zerforschen.plus"; forceSSL = true; locations = { "/_metrics".proxyPass = "http://unix:" + anubis-metrics-socket + ":/metrics"; diff --git a/nixosConfigurations/hetzner-vpn2/headscale.nix b/nixosConfigurations/hetzner-vpn2/headscale.nix index 6eac407..59a4621 100644 --- a/nixosConfigurations/hetzner-vpn2/headscale.nix +++ b/nixosConfigurations/hetzner-vpn2/headscale.nix @@ -31,6 +31,7 @@ in nginx.virtualHosts."uplink.darkest.space" = { enableACME = true; forceSSL = true; + useACMEHost = "uplink.darkest.space"; locations."/" = { proxyPass = "http://localhost:${builtins.toString headscale-port}"; proxyWebsockets = true;