From c1dcdfe493db78dae1e05b4cc7af858b12c798af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?= Date: Mon, 11 Nov 2024 16:34:24 +0100 Subject: [PATCH] Open port 80, necessary for ACME --- fediversity/mastodon.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fediversity/mastodon.nix b/fediversity/mastodon.nix index 14568a7..7c465fe 100644 --- a/fediversity/mastodon.nix +++ b/fediversity/mastodon.nix @@ -57,8 +57,8 @@ lib.mkIf (config.fediversity.enable && config.fediversity.mastodon.enable) { #### mastodon setup - # open up access to the mastodon web interface - networking.firewall.allowedTCPPorts = [ 443 ]; + # open up access to the mastodon web interface. 80 is necessary if only for ACME + networking.firewall.allowedTCPPorts = [ 80 443 ]; services.mastodon = { enable = true;