From a986fe18c48fb839f2ac44f844b161385f2c041d Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Tue, 10 Feb 2026 18:48:43 +0100 Subject: [PATCH] Remove redundant trusted server from Matrix configuration that might cause issues. --- nix-system-configs/modules/system/teamspeak.nix | 2 +- nix-system-configs/modules/system/traefik.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nix-system-configs/modules/system/teamspeak.nix b/nix-system-configs/modules/system/teamspeak.nix index c687232..7427647 100644 --- a/nix-system-configs/modules/system/teamspeak.nix +++ b/nix-system-configs/modules/system/teamspeak.nix @@ -71,7 +71,7 @@ allow_federation = true; allow_check_for_updates = true; - trusted_servers = ["matrix.org" "lilyu.xyz"]; + trusted_servers = ["matrix.org"]; # See https://docs.conduit.rs/turn.html, and https://github.com/element-hq/synapse/blob/develop/docs/turn-howto.md for more details # turn_uris = [ diff --git a/nix-system-configs/modules/system/traefik.nix b/nix-system-configs/modules/system/traefik.nix index e58c7f7..3613882 100644 --- a/nix-system-configs/modules/system/traefik.nix +++ b/nix-system-configs/modules/system/traefik.nix @@ -178,6 +178,7 @@ # Also accept TLS passthrough on port 443 for the Matrix host so # other servers that contact :443/_matrix/* # will be forwarded to Conduit as well. + # I guess I had to declare the rule explicitly here again? matrix-tls443 = { # match by SNI to avoid interfering with other HTTPS sites rule = "HostSNI(`lgbtq.prg-radio.org`)";