From 824aef33a5e6590c557f8a09b96971b1adb46eec Mon Sep 17 00:00:00 2001 From: Katharina Heidenreich Date: Sat, 14 Mar 2026 15:08:32 +0100 Subject: [PATCH] test --- services/nginx.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/services/nginx.nix b/services/nginx.nix index ea43399..c6a293a 100644 --- a/services/nginx.nix +++ b/services/nginx.nix @@ -35,7 +35,7 @@ let serviceNamesMessage = builtins.toString (builtins.attrNames network.reverse_proxy); fallback = { serverName = "_"; - listen = [ {addr = "0.0.0.0"; port = 80;} { addr = "0.0.0.0"; port = 443; ssl = true; }]; + listen = [ {addr = "0.0.0.0"; port = 80;}]; locations."/" = { return = "404"; extraConfig = '' @@ -47,13 +47,6 @@ let return 404 "This domain is not configured. Available services: ${serviceNamesMessage}"; ''; }; - acme = { - serverName = "_"; - listen = [ {addr = "0.0.0.0"; port = 80;} ]; - locations."/.well-known/acme-challenge" = { - root = "/var/lib/acme/.challenges"; - }; - }; in { services.nginx = { enable = true;