From 9769f23c295bed3a9804d6958644479587a45329 Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 19 Jul 2023 23:13:09 -0400 Subject: hosts/atlas + p-body: close port 80 --- hosts/atlas/nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hosts/atlas') diff --git a/hosts/atlas/nginx.nix b/hosts/atlas/nginx.nix index 5805dc8..b6b2fe7 100644 --- a/hosts/atlas/nginx.nix +++ b/hosts/atlas/nginx.nix @@ -1,5 +1,5 @@ {config, ...}: { - networking.firewall.allowedTCPPorts = [80 443]; + networking.firewall.allowedTCPPorts = [443]; security.acme = { acceptTerms = true; @@ -17,7 +17,7 @@ virtualHosts = let mkProxy = endpoint: port: { "${endpoint}" = { - proxyPass = "http://127.0.0.1:${port}"; + proxyPass = "http://localhost:${port}"; proxyWebsockets = true; }; }; -- cgit v1.2.3