diff --git a/config/hosts/wind/data/secrets/secrets.nix b/config/hosts/wind/data/secrets/secrets.nix index 47c5c6e..d95a37c 100644 Binary files a/config/hosts/wind/data/secrets/secrets.nix and b/config/hosts/wind/data/secrets/secrets.nix differ diff --git a/config/hosts/wind/services/nginx.nix b/config/hosts/wind/services/nginx.nix index ebafed1..48176d7 100644 --- a/config/hosts/wind/services/nginx.nix +++ b/config/hosts/wind/services/nginx.nix @@ -5,10 +5,6 @@ enableACME = true; forceSSL = true; locations."/".root = "/var/www/graven.dev/public"; - locations."~ ^/(client|_matrix/client/unstable/org.matrix.msc3575/sync)" = { - proxyPass = "http://127.0.0.1:8009"; - priority = 900; - }; locations."~ ^(\\/_matrix|\\/_synapse\\/client)" = { proxyPass = "http://127.0.0.1:8008"; priority = 1000; diff --git a/config/hosts/wind/services/synapse.nix b/config/hosts/wind/services/synapse.nix index 8d4ab4d..c5899eb 100644 --- a/config/hosts/wind/services/synapse.nix +++ b/config/hosts/wind/services/synapse.nix @@ -66,10 +66,5 @@ ]; }; }; - services.matrix-sliding-sync = { - enable = true; - settings.SYNCV3_SERVER = "https://graven.dev"; - environmentFile = builtins.toString config.secrets.files.synapse_sliding_sync_env.file; - }; }