From e1ef4eceaa169db14ca03edebff51e67961faf4a Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Sat, 20 Jul 2024 20:09:18 -0400 Subject: [PATCH] Open port 8448 for matrix federation --- modules/hosts/nixos/hetznix01/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/hosts/nixos/hetznix01/default.nix b/modules/hosts/nixos/hetznix01/default.nix index 26e7ec9..24d4132 100644 --- a/modules/hosts/nixos/hetznix01/default.nix +++ b/modules/hosts/nixos/hetznix01/default.nix @@ -23,12 +23,13 @@ networking = { # Open ports in the firewall. firewall.allowedTCPPorts = [ - 22 # ssh - 25 # SMTP (unencrypted) - 80 # http to local Nginx - 443 # https to local Nginx - 465 # SMTP with TLS - 587 # SMTP with STARTTLS + 22 # ssh + 25 # SMTP (unencrypted) + 80 # http to local Nginx + 443 # https to local Nginx + 465 # SMTP with TLS + 587 # SMTP with STARTTLS + 8448 # Matrix Synapse ]; # firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether.