From e73d7284cae4c5b2b872c3722155cd293a3fc03c Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Fri, 27 Dec 2024 19:14:23 +0200 Subject: [PATCH] Fixed syntax errors --- nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.nix b/nginx.nix index 3d954d5..e02df29 100644 --- a/nginx.nix +++ b/nginx.nix @@ -7,7 +7,7 @@ locations."/" = { proxyPass = "http://localhost:3000"; }; - } + }; virtualHosts."185.170.113.195" = { listen = [{ addr = "0.0.0.0"; @@ -41,5 +41,5 @@ }; }; - networking.firewall.allowedTCPPorts = [ 80, 3000 ]; + networking.firewall.allowedTCPPorts = [ 80 3000 ]; }