From 366b3afc37e5c4ce6308e526ac076ef719957b1f Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 8 Apr 2025 15:19:59 +0200 Subject: [PATCH] test --- server-modules/nginx.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server-modules/nginx.nix b/server-modules/nginx.nix index 6573577..679ca4a 100644 --- a/server-modules/nginx.nix +++ b/server-modules/nginx.nix @@ -19,6 +19,9 @@ services.nginx.virtualHosts."default" = { default = true; locations."/" = { return = 444; }; + extraConfig = '' + server_name _; + ''; }; networking.firewall.allowedTCPPorts = [ 80 443 ];