1
0
Fork 0

synapse: Fixup

This commit is contained in:
Daniel Kempkens 2023-03-06 19:09:07 +01:00
parent 0145e37a75
commit 32c7a32567
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -87,18 +87,9 @@
extraConfigFiles = [ config.age.secrets.synapse-extra-config.path ];
};
networking.firewall.interfaces."enp7s0".allowedTCPPorts = [ 8008 8443 ];
networking.firewall.interfaces."enp7s0".allowedTCPPorts = [ 8008 ];
services.nginx.virtualHosts."matrix.kempkens.io" = {
listen = [
{ addr = "0.0.0.0"; port = 80; }
{ addr = "[::0]"; port = 80; }
{ addr = "0.0.0.0"; port = 443; ssl = true; }
{ addr = "[::0]"; port = 443; ssl = true; }
{ addr = "0.0.0.0"; port = 8443; ssl = true; }
{ addr = "[::0]"; port = 8443; ssl = true; }
];
http3 = true;
forceSSL = true;