From 6323e0adc81863252557c4932eafb9a31871d40e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?= Date: Fri, 20 Sep 2024 18:44:47 +0200 Subject: [PATCH] Also open HTTPS port --- fediversity/pixelfed.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fediversity/pixelfed.nix b/fediversity/pixelfed.nix index a44b8f1..da77fea 100644 --- a/fediversity/pixelfed.nix +++ b/fediversity/pixelfed.nix @@ -82,5 +82,5 @@ lib.mkIf (config.fediversity.enable && config.fediversity.pixelfed.enable) { patches = (old.patches or [ ]) ++ [ ./pixelfed-group-permissions.patch ]; }); - networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowedTCPPorts = [ 80 443 ]; }