Merge pull request #439 from genebean/matrix_federation

Open port 8448 for matrix federation
This commit is contained in:
Gene Liverman 2024-07-20 20:10:48 -04:00 committed by GitHub
commit dd48f3c04d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,12 +23,13 @@
networking = { networking = {
# Open ports in the firewall. # Open ports in the firewall.
firewall.allowedTCPPorts = [ firewall.allowedTCPPorts = [
22 # ssh 22 # ssh
25 # SMTP (unencrypted) 25 # SMTP (unencrypted)
80 # http to local Nginx 80 # http to local Nginx
443 # https to local Nginx 443 # https to local Nginx
465 # SMTP with TLS 465 # SMTP with TLS
587 # SMTP with STARTTLS 587 # SMTP with STARTTLS
8448 # Matrix Synapse
]; ];
# firewall.allowedUDPPorts = [ ... ]; # firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether. # Or disable the firewall altogether.