Open port 80, necessary for ACME

This commit is contained in:
Nicolas Jeannerod 2024-11-11 16:34:24 +01:00 committed by Valentin Gagarin
parent 95e572bce0
commit 3f3e70eab5

View file

@ -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;