summary refs log tree commit diff
path: root/host/Rory-nginx/services/matrix/synapse/workers/background.nix
blob: c97d64713c3f048db6d62457b6c3a2b06ed8f23f (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
37
38
39
40
41
{
  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;
              }
            ];
          }
        ];
      };
    };
  };
}