From 162a2138be8867a4cf1276c203f18d4acd33f720 Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Sat, 22 Jan 2022 17:57:23 +0100 Subject: [PATCH] allow port 443 --- nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.nix b/nginx.nix index 37cedc4..fd7e23d 100644 --- a/nginx.nix +++ b/nginx.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, ... }: { - networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowedTCPPorts = [ 80 443 ]; services.nginx = { enable = true; #logError = "/dev/null";