diff options
author | Rory& <root@rory.gay> | 2024-07-01 18:49:36 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-07-04 14:45:02 +0200 |
commit | f5c02224861c5d11c318ff25bd2a8fd551ade11a (patch) | |
tree | 7bc124833005f8a16fdaab2d3f6a502e60f93360 /host/Rory-nginx/services/matrix/synapse/workers/federation-sender.nix | |
parent | Synapse changes for testing (diff) | |
download | Rory-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.nix | 2 |
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); |