From c0e92a4ef3e61f4589d32b7b5dc7814a60c99540 Mon Sep 17 00:00:00 2001 From: andromeda Date: Tue, 13 Jan 2026 10:55:24 +0100 Subject: [PATCH] typo --- modules/nixos/matrix-synapse.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/nixos/matrix-synapse.nix b/modules/nixos/matrix-synapse.nix index 3966cd4..f47c4f4 100644 --- a/modules/nixos/matrix-synapse.nix +++ b/modules/nixos/matrix-synapse.nix @@ -28,15 +28,15 @@ in { locations."= /.well-known/matrix/server".extraConfig = mkWellKnown serverConfig; locations."= /.well-known/matrix/client".extraConfig = mkWellKnown clientConfig; }; - }; - "${fqdn}" = { - enableACME = true; - forceSSL = true; - locations."/".extraConfig = '' - return 404; - ''; - locations."/_matrix".proxyPass = "http://[::1]:8008"; - locations."/_synapse/client".proxyPass = "http://[::1]:8008"; + "${fqdn}" = { + enableACME = true; + forceSSL = true; + locations."/".extraConfig = '' + return 404; + ''; + locations."/_matrix".proxyPass = "http://[::1]:8008"; + locations."/_synapse/client".proxyPass = "http://[::1]:8008"; + }; }; }; services.matrix-synapse = {