summary refs log tree commit diff
path: root/host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-07-01 18:49:36 +0200
committerRory& <root@rory.gay>2024-07-04 14:45:02 +0200
commitf5c02224861c5d11c318ff25bd2a8fd551ade11a (patch)
tree7bc124833005f8a16fdaab2d3f6a502e60f93360 /host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix
parentSynapse changes for testing (diff)
downloadRory-Open-Architecture-f5c02224861c5d11c318ff25bd2a8fd551ade11a.tar.xz
Move synapse sockets to /run/matrix-synapse instead of /run/synapse
Diffstat (limited to 'host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix')
-rw-r--r--host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix b/host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix
index 05221de..9d00c78 100644
--- a/host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix
+++ b/host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix
@@ -9,7 +9,7 @@ in
       instance_map = lib.listToAttrs (lib.map (index: {
         name = "federation_sender-${toString index}";
         value = {
-          path = "/run/synapse/federation_sender-${toString index}.sock";
+          path = "/run/matrix-synapse/federation_sender-${toString index}.sock";
         };
       }) federationSenders);