summary refs log tree commit diff
path: root/host/Rory-nginx/services/matrix/synapse/workers/background.nix
blob: d267124851c1c29c3a2c72a0257840a461a989b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ config, pkgs, lib, ... }:

let 
  cfg = config.services.matrix-synapse;
in
{
  services.matrix-synapse = lib.mkIf cfg.enableBackgroundWorker {
    settings = {
      instance_map = {
        appservice = {
          path = "/run/matrix-synapse/background.sock";
        };
      };

      run_background_tasks_on = "background";
    };

    workers = {
      appservice = {
        worker_app = "synapse.app.generic_worker";
        worker_listeners = [
          {
            type = "http";
            path = "/run/matrix-synapse/background.sock";
            resources = [
              {
                names = ["replication"];
                compress = false;
              }
            ];
          }
        ];
      };
    };
  };
}