From c9fbf0b50c819cd7ef9850ecd8df2ef79389076d Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 6 Jan 2024 14:04:53 +0100 Subject: [PATCH] Nextcloud: add HTTPS port --- modules/nixos/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/nextcloud.nix b/modules/nixos/nextcloud.nix index 2d6a6f7..541e7e4 100644 --- a/modules/nixos/nextcloud.nix +++ b/modules/nixos/nextcloud.nix @@ -38,5 +38,5 @@ }; }; - networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowedTCPPorts = [ 80 443 ]; }