mirror of
https://github.com/dali99/nixos-matrix-modules.git
synced 2026-06-23 16:37:56 +02:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c7cdcead1 |
@@ -1,2 +0,0 @@
|
|||||||
result
|
|
||||||
result-*
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2020, 2022-2023 Daniel Løvbrøtte Olsen and contributors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
# Migrations
|
|
||||||
|
|
||||||
This is a best effort document descibing neccecary changes you might have to do when updating
|
|
||||||
|
|
||||||
## 0.8.0
|
|
||||||
|
|
||||||
`saml2` is no longer enabled, as it depends on vulnerable dependencies and isnt really built in nixpks anymore.
|
|
||||||
|
|
||||||
If you need to authenticate with saml, you should deploy some sort of saml to openid bridge, instead.
|
|
||||||
|
|
||||||
## 0.6.1
|
|
||||||
|
|
||||||
enableSlidingSync, and setting matrix-synapse.sliding-sync.environmentFile (or any other sliding-sync setting)
|
|
||||||
is no longer needed for a sliding-sync setup. Upgrading will force relogins for all users.
|
|
||||||
|
|
||||||
## 0.5.0
|
|
||||||
|
|
||||||
* The module has been renamed from `synapse` to `default`
|
|
||||||
* The synapse module now expects a wrapper-style package. This means the module is now incompatible with nixpkgs < 23.11.
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
For support and requests feel free to join [#nixos-matrix-modules:dodsorf.as](https://matrix.to/#/#nixos-matrix-modules:dodsorf.as), [uri](matrix:r/nixos-matrix-modules:dodsorf.as)
|
|
||||||
|
|
||||||
With matrix.YOURDOMAIN pointing at the server:
|
With matrix.YOURDOMAIN pointing at the server:
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -11,10 +9,6 @@ With matrix.YOURDOMAIN pointing at the server:
|
|||||||
|
|
||||||
workers.federationSenders = 1;
|
workers.federationSenders = 1;
|
||||||
workers.federationReceivers = 1;
|
workers.federationReceivers = 1;
|
||||||
workers.initialSyncers = 1;
|
|
||||||
workers.normalSyncers = 1;
|
|
||||||
workers.eventPersisters = 2;
|
|
||||||
workers.useUserDirectoryWorker = true;
|
|
||||||
|
|
||||||
enableNginx = true;
|
enableNginx = true;
|
||||||
|
|
||||||
@@ -37,4 +31,4 @@ With matrix.YOURDOMAIN pointing at the server:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
is ~enough to get a functional matrix-server running with some workers
|
is ~enough to get a functional matrix-server running one federation sender and one federation receiver
|
||||||
|
|||||||
Generated
+10
-10
@@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs-lib": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1781216227,
|
"lastModified": 1673743903,
|
||||||
"narHash": "sha256-9mUW6gNwoN2SWc/l0fW4svPNOulXLl8ijqKyeSOGgJE=",
|
"narHash": "sha256-sloY6KYyVOozJ1CkbgJPpZ99TKIjIvM+04V48C04sMQ=",
|
||||||
"owner": "NixOS",
|
"owner": "nix-community",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs.lib",
|
||||||
"rev": "a0374025a863d007d98e3297f6aa46cc3141c2f0",
|
"rev": "7555e2dfcbac1533f047021f1744ac8871150f9f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"id": "nixpkgs",
|
"owner": "nix-community",
|
||||||
"ref": "nixos-26.05",
|
"repo": "nixpkgs.lib",
|
||||||
"type": "indirect"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs-lib": "nixpkgs-lib"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,35 +2,13 @@
|
|||||||
description = "NixOS modules for matrix related services";
|
description = "NixOS modules for matrix related services";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "nixpkgs/nixos-26.05";
|
nixpkgs-lib.url = github:nix-community/nixpkgs.lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs }: {
|
outputs = { self, nixpkgs-lib }: {
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
default = import ./module.nix;
|
synapse = import ./synapse-module { matrix-lib = self.lib; };
|
||||||
};
|
};
|
||||||
|
lib = import ./lib.nix { lib = nixpkgs-lib.lib; };
|
||||||
lib = import ./lib.nix { lib = nixpkgs.lib; };
|
|
||||||
|
|
||||||
checks = let
|
|
||||||
forAllSystems = f:
|
|
||||||
nixpkgs.lib.genAttrs [
|
|
||||||
"x86_64-linux"
|
|
||||||
"aarch64-linux"
|
|
||||||
"x86_64-darwin"
|
|
||||||
"aarch64-darwin"
|
|
||||||
] (system: f nixpkgs.legacyPackages.${system});
|
|
||||||
in forAllSystems (pkgs: let
|
|
||||||
tests = import ./tests {
|
|
||||||
inherit nixpkgs pkgs;
|
|
||||||
matrix-lib = self.lib;
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
inherit (tests)
|
|
||||||
nginx-pipeline-eval
|
|
||||||
synapse
|
|
||||||
synapse-workers
|
|
||||||
;
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ rec {
|
|||||||
isListenerType = type: l: lib.any (r: lib.any (n: n == type) r.names) l.resources;
|
isListenerType = type: l: lib.any (r: lib.any (n: n == type) r.names) l.resources;
|
||||||
# Get the first listener that includes the given resource from worker
|
# Get the first listener that includes the given resource from worker
|
||||||
firstListenerOfType = type: ls: lib.lists.findFirst (isListenerType type)
|
firstListenerOfType = type: ls: lib.lists.findFirst (isListenerType type)
|
||||||
(throw "No listener with resource: ${type} configured")
|
(lib.throw "No listener with resource: ${type} configured")
|
||||||
ls;
|
ls;
|
||||||
# Get an attrset of the host and port from a listener
|
# Get an attrset of the host and port from a listener
|
||||||
connectionInfo = l: {
|
connectionInfo = l: {
|
||||||
host = lib.head l.bind_addresses;
|
host = lib.head l.bind_addresses;
|
||||||
port = l.port;
|
port = l.port;
|
||||||
@@ -17,64 +17,4 @@ rec {
|
|||||||
l = firstListenerOfType r w.settings.worker_listeners;
|
l = firstListenerOfType r w.settings.worker_listeners;
|
||||||
in connectionInfo l;
|
in connectionInfo l;
|
||||||
|
|
||||||
mapWorkersToUpstreamsByType = workerInstances:
|
|
||||||
lib.pipe workerInstances [
|
|
||||||
lib.attrValues
|
|
||||||
|
|
||||||
# Index by worker type
|
|
||||||
(lib.foldl (acc: worker: acc // {
|
|
||||||
${worker.type} = (acc.${worker.type} or [ ]) ++ [ worker ];
|
|
||||||
}) { })
|
|
||||||
|
|
||||||
# Subindex by resource names, listener types, and convert to upstreams
|
|
||||||
(lib.mapAttrs (_: workers: lib.pipe workers [
|
|
||||||
(lib.concatMap (worker: [ (lib.lists.head worker.settings.worker_listeners) ]))
|
|
||||||
lib.flatten
|
|
||||||
mapListenersToUpstreamsByType
|
|
||||||
]))
|
|
||||||
];
|
|
||||||
|
|
||||||
mapListenersToUpstreamsByType = listenerInstances:
|
|
||||||
lib.pipe listenerInstances [
|
|
||||||
# Index by resource names
|
|
||||||
(lib.concatMap (listener: lib.pipe listener [
|
|
||||||
(listener: let
|
|
||||||
allResourceNames = lib.pipe listener.resources [
|
|
||||||
(map (resource: resource.names))
|
|
||||||
lib.flatten
|
|
||||||
lib.unique
|
|
||||||
];
|
|
||||||
in if allResourceNames == [ ]
|
|
||||||
then { "empty" = listener; }
|
|
||||||
else lib.genAttrs allResourceNames (_: listener))
|
|
||||||
lib.attrsToList
|
|
||||||
]))
|
|
||||||
|
|
||||||
(lib.foldl (acc: listener: acc // {
|
|
||||||
${listener.name} = (acc.${listener.name} or [ ]) ++ [ listener.value ];
|
|
||||||
}) { })
|
|
||||||
|
|
||||||
# Index by listener type
|
|
||||||
(lib.mapAttrs (_:
|
|
||||||
(lib.foldl (acc: listener: acc // {
|
|
||||||
${listener.type} = (acc.${listener.type} or [ ]) ++ [ listener ];
|
|
||||||
}) { })
|
|
||||||
))
|
|
||||||
|
|
||||||
# Convert listeners to upstream URIs
|
|
||||||
(lib.mapAttrs (_:
|
|
||||||
(lib.mapAttrs (_: listeners:
|
|
||||||
lib.pipe listeners [
|
|
||||||
(lib.concatMap (listener:
|
|
||||||
if listener.path != null
|
|
||||||
then [ "unix:${listener.path}" ]
|
|
||||||
else (map (addr: "${addr}:${toString listener.port}") listener.bind_addresses)
|
|
||||||
))
|
|
||||||
# NOTE: Adding ` = { }` to every upstream might seem unnecessary in isolation,
|
|
||||||
# but it makes it easier to set upstreams in the nginx module.
|
|
||||||
(uris: lib.genAttrs uris (_: { }))
|
|
||||||
]
|
|
||||||
))
|
|
||||||
))
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
{ lib, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./synapse-module
|
|
||||||
|
|
||||||
# TODO: Remove after 25.05
|
|
||||||
(lib.mkRemovedOptionModule [ "services" "matrix-synapse" "sliding-sync" ] ''
|
|
||||||
`services.matrix-synapse.sliding-sync` is no longer necessary to use sliding-sync with synapse.
|
|
||||||
As synapse now includes this in itself, if you have a manually managed `.well-known/matrix/client` file
|
|
||||||
remove the proxy url from it.
|
|
||||||
'')
|
|
||||||
];
|
|
||||||
}
|
|
||||||
+33
-220
@@ -1,8 +1,6 @@
|
|||||||
{ pkgs, lib, options, config, ... }:
|
{ matrix-lib }:
|
||||||
|
{ pkgs, lib, config, ... }:
|
||||||
let
|
let
|
||||||
matrix-lib = (import ../lib.nix { inherit lib; });
|
|
||||||
|
|
||||||
opt = options.services.matrix-synapse-next;
|
|
||||||
cfg = config.services.matrix-synapse-next;
|
cfg = config.services.matrix-synapse-next;
|
||||||
wcfg = cfg.workers;
|
wcfg = cfg.workers;
|
||||||
|
|
||||||
@@ -10,43 +8,10 @@ let
|
|||||||
cfgText = "config.services.matrix-synapse-next";
|
cfgText = "config.services.matrix-synapse-next";
|
||||||
wcfgText = "config.services.matrix-synapse-next.workers";
|
wcfgText = "config.services.matrix-synapse-next.workers";
|
||||||
|
|
||||||
usesCustomSigningKeyPath = cfg.settings.signing_key_path != (opt.settings.type.getSubOptions { }).signing_key_path.default;
|
format = pkgs.formats.yaml {};
|
||||||
|
matrix-synapse-common-config = format.generate "matrix-synapse-common-config.yaml" cfg.settings;
|
||||||
format = pkgs.formats.yaml { };
|
pluginsEnv = cfg.package.python.buildEnv.override {
|
||||||
matrix-synapse-common-config = lib.pipe cfg.settings [
|
extraLibs = cfg.plugins;
|
||||||
(settings: settings // {
|
|
||||||
listeners = map (lib.filterAttrsRecursive (_: v: v != null)) cfg.settings.listeners;
|
|
||||||
media_store_path = "/var/lib/matrix-synapse/media_store";
|
|
||||||
})
|
|
||||||
(settings: settings // (lib.optionalAttrs usesCustomSigningKeyPath {
|
|
||||||
signing_key_path = "/run/credentials/matrix-synapse.service/signing_key";
|
|
||||||
}))
|
|
||||||
(let
|
|
||||||
filterRecursiveNull =
|
|
||||||
o:
|
|
||||||
if lib.isAttrs o then
|
|
||||||
lib.mapAttrs (_: v: filterRecursiveNull v) (lib.filterAttrs (_: v: v != null) o)
|
|
||||||
else if lib.isList o then
|
|
||||||
map filterRecursiveNull (lib.filter (v: v != null) o)
|
|
||||||
else
|
|
||||||
o;
|
|
||||||
in filterRecursiveNull)
|
|
||||||
(format.generate "matrix-synapse-common-config.yaml")
|
|
||||||
];
|
|
||||||
|
|
||||||
# TODO: Align better with the upstream module
|
|
||||||
wrapped = cfg.package.override {
|
|
||||||
inherit (cfg) plugins;
|
|
||||||
extras = [
|
|
||||||
"postgres"
|
|
||||||
"oidc"
|
|
||||||
"systemd"
|
|
||||||
"url-preview"
|
|
||||||
"sentry"
|
|
||||||
"jwt"
|
|
||||||
"redis"
|
|
||||||
"cache-memory"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
@@ -67,7 +32,7 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
(import ./workers.nix {
|
(import ./workers.nix {
|
||||||
inherit matrix-lib throw' format matrix-synapse-common-config wrapped;
|
inherit matrix-lib throw' format matrix-synapse-common-config pluginsEnv;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -90,14 +55,6 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
withJemalloc = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = true;
|
|
||||||
description = ''
|
|
||||||
Whether to preload jemalloc to reduce memory fragmentation and overall usage.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
dataDir = mkOption {
|
dataDir = mkOption {
|
||||||
type = types.path;
|
type = types.path;
|
||||||
default = "/var/lib/matrix-synapse";
|
default = "/var/lib/matrix-synapse";
|
||||||
@@ -107,15 +64,6 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
socketDir = mkOption {
|
|
||||||
type = types.path;
|
|
||||||
default = "/run/matrix-synapse";
|
|
||||||
description = ''
|
|
||||||
The directory where matrix-synapse by default stores the sockets of
|
|
||||||
all listeners that bind to UNIX sockets.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
enableNginx = mkEnableOption "The synapse module managing nginx";
|
enableNginx = mkEnableOption "The synapse module managing nginx";
|
||||||
|
|
||||||
public_baseurl = mkOption {
|
public_baseurl = mkOption {
|
||||||
@@ -135,8 +83,6 @@ in
|
|||||||
description = "A yaml python logging config file";
|
description = "A yaml python logging config file";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableSlidingSync = mkEnableOption "automatic Sliding Sync setup at `slidingsync.<domain>`";
|
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
type = types.submodule {
|
type = types.submodule {
|
||||||
freeformType = format.type;
|
freeformType = format.type;
|
||||||
@@ -172,42 +118,14 @@ in
|
|||||||
type = types.listOf (types.submodule {
|
type = types.listOf (types.submodule {
|
||||||
options = {
|
options = {
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
type = with types; nullOr types.port;
|
type = types.port;
|
||||||
default = null;
|
description = "The TCP port to bind to";
|
||||||
description = ''
|
|
||||||
The TCP port to bind to.
|
|
||||||
|
|
||||||
::: {.note}
|
|
||||||
This option will be ignored if {option}`path` is set to a non-null value.
|
|
||||||
:::
|
|
||||||
'';
|
|
||||||
example = 8448;
|
example = 8448;
|
||||||
};
|
};
|
||||||
|
|
||||||
path = mkOption {
|
|
||||||
type = with types; nullOr path;
|
|
||||||
default = null;
|
|
||||||
description = ''
|
|
||||||
The UNIX socket to bind to.
|
|
||||||
|
|
||||||
::: {.note}
|
|
||||||
This option will override {option}`bind_addresses` and {option}`port`
|
|
||||||
if set to a non-null value.
|
|
||||||
:::
|
|
||||||
'';
|
|
||||||
example = literalExpression ''''${${cfgText}.socketDir}/matrix-synapse.sock'';
|
|
||||||
};
|
|
||||||
|
|
||||||
bind_addresses = mkOption {
|
bind_addresses = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = [ ];
|
description = "A list of local addresses to listen on";
|
||||||
description = ''
|
|
||||||
A list of local addresses to listen on.
|
|
||||||
|
|
||||||
::: {.note}
|
|
||||||
This option will be ignored if {option}`path` is set to a non-null value.
|
|
||||||
:::
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
@@ -266,14 +184,16 @@ in
|
|||||||
# TODO: add defaultText
|
# TODO: add defaultText
|
||||||
default = [
|
default = [
|
||||||
{
|
{
|
||||||
path = "${cfg.socketDir}/matrix-synapse.sock";
|
port = 8008;
|
||||||
|
bind_addresses = [ "127.0.0.1" ];
|
||||||
resources = [
|
resources = [
|
||||||
{ names = [ "client" ]; compress = true; }
|
{ names = [ "client" ]; compress = true; }
|
||||||
{ names = [ "federation" ]; compress = false; }
|
{ names = [ "federation" ]; compress = false; }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
(mkIf (wcfg.instances != { }) {
|
(mkIf (wcfg.instances != { }) {
|
||||||
path = "${cfg.socketDir}/matrix-synapse-replication.sock";
|
port = 9093;
|
||||||
|
bind_addresses = [ "127.0.0.1" ];
|
||||||
resources = [
|
resources = [
|
||||||
{ names = [ "replication" ]; }
|
{ names = [ "replication" ]; }
|
||||||
];
|
];
|
||||||
@@ -288,30 +208,6 @@ in
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
database.name = mkOption {
|
|
||||||
type = types.enum [ "psycopg2" ];
|
|
||||||
default = "psycopg2";
|
|
||||||
description = ''
|
|
||||||
The database engine name. Hardcoded to psycopg2, this module is not designed for use with sqlite.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
database.args.database = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
default = "matrix-synapse";
|
|
||||||
description = ''
|
|
||||||
Name of the database.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
database.args.user = mkOption {
|
|
||||||
type = types.nullOr types.str;
|
|
||||||
default = "matrix-synapse";
|
|
||||||
description = ''
|
|
||||||
Username to use when connecting to postgresql.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
federation_ip_range_blacklist = mkOption {
|
federation_ip_range_blacklist = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
description = ''
|
description = ''
|
||||||
@@ -439,19 +335,11 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
assertions = [ ]
|
|
||||||
++ (map (l: {
|
|
||||||
assertion = l.path == null -> (l.bind_addresses != [ ] && l.port != null);
|
|
||||||
message = "Some listeners are missing either a socket path or a bind_address + port to listen on";
|
|
||||||
}) cfg.settings.listeners);
|
|
||||||
|
|
||||||
warnings = [ ] ++ lib.optional cfg.enableSlidingSync
|
|
||||||
"the option services.matrix-synapse-next.enableSlidingSync no longer has any effect (and is enabled by default)";
|
|
||||||
|
|
||||||
users.users.matrix-synapse = {
|
users.users.matrix-synapse = {
|
||||||
group = "matrix-synapse";
|
group = "matrix-synapse";
|
||||||
home = "/var/lib/matrix-synapse";
|
home = cfg.dataDir;
|
||||||
createHome = true;
|
createHome = true;
|
||||||
|
shell = "${pkgs.bash}/bin/bash";
|
||||||
uid = config.ids.uids.matrix-synapse;
|
uid = config.ids.uids.matrix-synapse;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -462,8 +350,7 @@ in
|
|||||||
systemd = {
|
systemd = {
|
||||||
targets.matrix-synapse = {
|
targets.matrix-synapse = {
|
||||||
description = "Matrix synapse parent target";
|
description = "Matrix synapse parent target";
|
||||||
after = [ "network-online.target" ];
|
after = [ "network.target" ];
|
||||||
requires = [ "network-online.target" ];
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -473,110 +360,36 @@ in
|
|||||||
after= [ "system.slice" ];
|
after= [ "system.slice" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
tmpfiles.settings."10-matrix-synapse" = {
|
|
||||||
"${cfg.dataDir}".d = lib.mkIf (cfg.dataDir != "/var/lib/matrix-synapse") {
|
|
||||||
user = "matrix-synapse";
|
|
||||||
group = "matrix-synapse";
|
|
||||||
mode = "0700";
|
|
||||||
};
|
|
||||||
"${cfg.settings.media_store_path}".d = lib.mkIf (cfg.settings.media_store_path != "/var/lib/matrix-synapse/media_store") {
|
|
||||||
user = "matrix-synapse";
|
|
||||||
group = "matrix-synapse";
|
|
||||||
mode = "0700";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.matrix-synapse = {
|
services.matrix-synapse = {
|
||||||
description = "Synapse Matrix homeserver";
|
description = "Synapse Matrix homeserver";
|
||||||
partOf = [ "matrix-synapse.target" ];
|
partOf = [ "matrix-synapse.target" ];
|
||||||
wantedBy = [ "matrix-synapse.target" ];
|
wantedBy = [ "matrix-synapse.target" ];
|
||||||
after = lib.mkIf (config.systemd.tmpfiles.settings."10-matrix-synapse" != { }) [
|
|
||||||
"systemd-tmpfiles-setup.service"
|
|
||||||
"systemd-tmpfiles-resetup.service"
|
|
||||||
];
|
|
||||||
|
|
||||||
environment = lib.optionalAttrs cfg.withJemalloc {
|
preStart = let
|
||||||
LD_PRELOAD = "${pkgs.jemalloc}/lib/libjemalloc.so";
|
flags = lib.cli.toGNUCommandLineShell {} {
|
||||||
PYTHONMALLOC = "malloc";
|
config-path = [ matrix-synapse-common-config ] ++ cfg.extraConfigFiles;
|
||||||
};
|
keys-directory = cfg.dataDir;
|
||||||
|
generate-keys = true;
|
||||||
|
};
|
||||||
|
in "${cfg.package}/bin/synapse_homeserver ${flags}";
|
||||||
|
|
||||||
|
environment.PYTHONPATH =
|
||||||
|
lib.makeSearchPathOutput "lib" cfg.package.python.sitePackages [ pluginsEnv ];
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "notify";
|
Type = "notify";
|
||||||
User = "matrix-synapse";
|
User = "matrix-synapse";
|
||||||
Group = "matrix-synapse";
|
Group = "matrix-synapse";
|
||||||
Slice = "system-matrix-synapse.slice";
|
Slice = "system-matrix-synapse.slice";
|
||||||
|
WorkingDirectory = cfg.dataDir;
|
||||||
Restart = "always";
|
ExecStart = let
|
||||||
RestartSec = 3;
|
flags = lib.cli.toGNUCommandLineShell {} {
|
||||||
|
|
||||||
WorkingDirectory = "/var/lib/matrix-synapse";
|
|
||||||
StateDirectory = "matrix-synapse";
|
|
||||||
RuntimeDirectory = "matrix-synapse";
|
|
||||||
|
|
||||||
ExecStartPre = let
|
|
||||||
flags = lib.cli.toCommandLineShellGNU {} {
|
|
||||||
config-path = [ matrix-synapse-common-config ] ++ cfg.extraConfigFiles;
|
config-path = [ matrix-synapse-common-config ] ++ cfg.extraConfigFiles;
|
||||||
keys-directory = "/var/lib/matrix-synapse";
|
keys-directory = cfg.dataDir;
|
||||||
generate-keys = true;
|
|
||||||
};
|
};
|
||||||
in "${cfg.package}/bin/synapse_homeserver ${flags}";
|
in "${cfg.package}/bin/synapse_homeserver ${flags}";
|
||||||
ExecStart = let
|
ExecReload = "${pkgs.utillinux}/bin/kill -HUP $MAINPID";
|
||||||
flags = lib.cli.toCommandLineShellGNU {} {
|
Restart = "on-failure";
|
||||||
config-path = [ matrix-synapse-common-config ] ++ cfg.extraConfigFiles;
|
|
||||||
keys-directory = "/var/lib/matrix-synapse";
|
|
||||||
};
|
|
||||||
in "${wrapped}/bin/synapse_homeserver ${flags}";
|
|
||||||
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -HUP $MAINPID";
|
|
||||||
|
|
||||||
AmbientCapabilities = [ "" ];
|
|
||||||
CapabilityBoundingSet = [ "" ];
|
|
||||||
LockPersonality = true;
|
|
||||||
NoNewPrivileges = true;
|
|
||||||
PrivateDevices = true;
|
|
||||||
PrivateTmp = true;
|
|
||||||
PrivateUsers = true;
|
|
||||||
ProcSubset = "pid";
|
|
||||||
ProtectClock = true;
|
|
||||||
ProtectControlGroups = true;
|
|
||||||
ProtectHome = true;
|
|
||||||
ProtectHostname = true;
|
|
||||||
ProtectKernelLogs = true;
|
|
||||||
ProtectKernelModules = true;
|
|
||||||
ProtectKernelTunables = true;
|
|
||||||
ProtectProc = "invisible";
|
|
||||||
ProtectSystem = "strict";
|
|
||||||
BindPaths = (lib.optionals (cfg.dataDir != "/var/lib/matrix-synapse") [
|
|
||||||
"${cfg.dataDir}:/var/lib/matrix-synapse"
|
|
||||||
]) ++ (lib.optionals (cfg.settings.media_store_path != "${cfg.dataDir}/media_store") [
|
|
||||||
"${cfg.settings.media_store_path}:/var/lib/matrix-synapse/media_store"
|
|
||||||
]);
|
|
||||||
ReadWritePaths = lib.pipe cfg.settings.listeners [
|
|
||||||
(lib.filter (listener: listener.path != null))
|
|
||||||
(map (listener: dirOf listener.path))
|
|
||||||
(lib.filter (path: path != "/run/matrix-synapse"))
|
|
||||||
lib.uniqueStrings
|
|
||||||
];
|
|
||||||
LoadCredential = lib.mkIf usesCustomSigningKeyPath [
|
|
||||||
"signing_key:${cfg.settings.signing_key_path}"
|
|
||||||
];
|
|
||||||
RemoveIPC = true;
|
|
||||||
RestrictAddressFamilies = [
|
|
||||||
"AF_INET"
|
|
||||||
"AF_INET6"
|
|
||||||
"AF_UNIX"
|
|
||||||
];
|
|
||||||
RestrictNamespaces = true;
|
|
||||||
RestrictRealtime = true;
|
|
||||||
RestrictSUIDSGID = true;
|
|
||||||
SocketBindAllow = lib.catAttrs "port" cfg.settings.listeners;
|
|
||||||
SocketBindDeny = "any";
|
|
||||||
SystemCallArchitectures = "native";
|
|
||||||
SystemCallFilter = [
|
|
||||||
"@system-service"
|
|
||||||
"~@resources"
|
|
||||||
"~@privileged"
|
|
||||||
];
|
|
||||||
UMask = "0027";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
+52
-35
@@ -2,10 +2,13 @@
|
|||||||
let
|
let
|
||||||
cfg = config.services.matrix-synapse-next;
|
cfg = config.services.matrix-synapse-next;
|
||||||
|
|
||||||
matrix-lib = (import ../lib.nix { inherit lib; });
|
getWorkersOfType = type: lib.filterAttrs (_: w: w.type == type) cfg.workers.instances;
|
||||||
|
isListenerType = type: listener: lib.lists.any (r: lib.lists.any (n: n == type) r.names) listener.resources;
|
||||||
workerUpstreams = matrix-lib.mapWorkersToUpstreamsByType cfg.workers.instances;
|
firstListenerOfType = type: worker: lib.lists.findFirst (isListenerType type) (throw "No federation endpoint on receiver") worker.settings.worker_listeners;
|
||||||
listenerUpstreams = matrix-lib.mapListenersToUpstreamsByType cfg.settings.listeners;
|
wAddressOfType = type: w: lib.lists.findFirst (_: true) (throw "No address in receiver") (firstListenerOfType type w).bind_addresses;
|
||||||
|
wPortOfType = type: w: (firstListenerOfType type w).port;
|
||||||
|
wSocketAddressOfType = type: w: "${wAddressOfType type w}:${builtins.toString (wPortOfType type w)}";
|
||||||
|
generateSocketAddresses = type: workers: lib.mapAttrsToList (_: w: "${wSocketAddressOfType type w}") workers;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enableNginx {
|
config = lib.mkIf cfg.enableNginx {
|
||||||
@@ -24,7 +27,6 @@ in
|
|||||||
~^/_matrix/client/(api/v1|r0|v3)/rooms/[^/]+/initialSync$ synapse_initial_sync;
|
~^/_matrix/client/(api/v1|r0|v3)/rooms/[^/]+/initialSync$ synapse_initial_sync;
|
||||||
|
|
||||||
# Federation requests
|
# Federation requests
|
||||||
~^/_matrix/federation/v1/version$ synapse_federation;
|
|
||||||
~^/_matrix/federation/v1/event/ synapse_federation;
|
~^/_matrix/federation/v1/event/ synapse_federation;
|
||||||
~^/_matrix/federation/v1/state/ synapse_federation;
|
~^/_matrix/federation/v1/state/ synapse_federation;
|
||||||
~^/_matrix/federation/v1/state_ids/ synapse_federation;
|
~^/_matrix/federation/v1/state_ids/ synapse_federation;
|
||||||
@@ -36,8 +38,6 @@ in
|
|||||||
~^/_matrix/federation/v1/make_leave/ synapse_federation;
|
~^/_matrix/federation/v1/make_leave/ synapse_federation;
|
||||||
~^/_matrix/federation/(v1|v2)/send_join/ synapse_federation;
|
~^/_matrix/federation/(v1|v2)/send_join/ synapse_federation;
|
||||||
~^/_matrix/federation/(v1|v2)/send_leave/ synapse_federation;
|
~^/_matrix/federation/(v1|v2)/send_leave/ synapse_federation;
|
||||||
~^/_matrix/federation/v1/make_knock/ synapse_federation;
|
|
||||||
~^/_matrix/federation/v1/send_knock/ synapse_federation;
|
|
||||||
~^/_matrix/federation/(v1|v2)/invite/ synapse_federation;
|
~^/_matrix/federation/(v1|v2)/invite/ synapse_federation;
|
||||||
~^/_matrix/federation/v1/event_auth/ synapse_federation;
|
~^/_matrix/federation/v1/event_auth/ synapse_federation;
|
||||||
~^/_matrix/federation/v1/timestamp_to_event/ synapse_federation;
|
~^/_matrix/federation/v1/timestamp_to_event/ synapse_federation;
|
||||||
@@ -59,23 +59,17 @@ in
|
|||||||
~^/_matrix/client/v1/rooms/.*/hierarchy$ synapse_client_interaction;
|
~^/_matrix/client/v1/rooms/.*/hierarchy$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(v1|unstable)/rooms/.*/relations/ synapse_client_interaction;
|
~^/_matrix/client/(v1|unstable)/rooms/.*/relations/ synapse_client_interaction;
|
||||||
~^/_matrix/client/v1/rooms/.*/threads$ synapse_client_interaction;
|
~^/_matrix/client/v1/rooms/.*/threads$ synapse_client_interaction;
|
||||||
|
~^/_matrix/client/unstable/org.matrix.msc2716/rooms/.*/batch_send$ synapse_client_interaction;
|
||||||
~^/_matrix/client/unstable/im.nheko.summary/rooms/.*/summary$ synapse_client_interaction;
|
~^/_matrix/client/unstable/im.nheko.summary/rooms/.*/summary$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/account/3pid$ synapse_client_interaction;
|
~^/_matrix/client/(r0|v3|unstable)/account/3pid$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/account/whoami$ synapse_client_interaction;
|
~^/_matrix/client/(r0|v3|unstable)/account/whoami$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/account/deactivate$ synapse_client_interaction;
|
~^/_matrix/client/(r0|v3|unstable)/devices$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(r0|v3)/delete_devices$ synapse_client_interaction;
|
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/devices(/|$) synapse_client_interaction;
|
|
||||||
~^/_matrix/client/versions$ synapse_client_interaction;
|
~^/_matrix/client/versions$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/voip/turnServer$ synapse_client_interaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/voip/turnServer$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/event/ synapse_client_interaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/event/ synapse_client_interaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/joined_rooms$ synapse_client_interaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/joined_rooms$ synapse_client_interaction;
|
||||||
~^/_matrix/client/v1/rooms/.*/timestamp_to_event$ synapse_client_interaction;
|
~^/_matrix/client/v1/rooms/.*/timestamp_to_event$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable/.*)/rooms/.*/aliases synapse_client_interaction;
|
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/search$ synapse_client_interaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/search$ synapse_client_interaction;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/user/.*/filter(/|$) synapse_client_interaction;
|
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/directory/room/.*$ synapse_client_interaction;
|
|
||||||
~^/_matrix/client/(r0|v3|unstable)/capabilities$ synapse_client_interaction;
|
|
||||||
~^/_matrix/client/(r0|v3|unstable)/notifications$ synapse_client_interaction;
|
|
||||||
|
|
||||||
# Encryption requests
|
# Encryption requests
|
||||||
~^/_matrix/client/(r0|v3|unstable)/keys/query$ synapse_client_encryption;
|
~^/_matrix/client/(r0|v3|unstable)/keys/query$ synapse_client_encryption;
|
||||||
@@ -83,15 +77,11 @@ in
|
|||||||
~^/_matrix/client/(r0|v3|unstable)/keys/claim$ synapse_client_encryption;
|
~^/_matrix/client/(r0|v3|unstable)/keys/claim$ synapse_client_encryption;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/room_keys/ synapse_client_encryption;
|
~^/_matrix/client/(r0|v3|unstable)/room_keys/ synapse_client_encryption;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/keys/upload/ synapse_client_encryption;
|
~^/_matrix/client/(r0|v3|unstable)/keys/upload/ synapse_client_encryption;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/keys/device_signing/upload$ synapse_client_encryption;
|
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/keys/signatures/upload$ synapse_client_encryption;
|
|
||||||
|
|
||||||
# Registration/login requests
|
# Registration/login requests
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/login$ synapse_client_login;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/login$ synapse_client_login;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/register$ synapse_client_login;
|
~^/_matrix/client/(r0|v3|unstable)/register$ synapse_client_login;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/register/available$ synapse_client_login;
|
|
||||||
~^/_matrix/client/v1/register/m.login.registration_token/validity$ synapse_client_login;
|
~^/_matrix/client/v1/register/m.login.registration_token/validity$ synapse_client_login;
|
||||||
~^/_matrix/client/(r0|v3|unstable)/password_policy$ synapse_client_login;
|
|
||||||
|
|
||||||
# Event sending requests
|
# Event sending requests
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/redact synapse_client_transaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/redact synapse_client_transaction;
|
||||||
@@ -99,7 +89,6 @@ in
|
|||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/state/ synapse_client_transaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/state/ synapse_client_transaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/(join|invite|leave|ban|unban|kick)$ synapse_client_transaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/(join|invite|leave|ban|unban|kick)$ synapse_client_transaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/join/ synapse_client_transaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/join/ synapse_client_transaction;
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/knock/ synapse_client_transaction;
|
|
||||||
~^/_matrix/client/(api/v1|r0|v3|unstable)/profile/ synapse_client_transaction;
|
~^/_matrix/client/(api/v1|r0|v3|unstable)/profile/ synapse_client_transaction;
|
||||||
|
|
||||||
# Account data requests
|
# Account data requests
|
||||||
@@ -128,6 +117,7 @@ in
|
|||||||
synapse_federation_transaction synapse_worker_federation;
|
synapse_federation_transaction synapse_worker_federation;
|
||||||
|
|
||||||
synapse_client_user-dir synapse_worker_user-dir;
|
synapse_client_user-dir synapse_worker_user-dir;
|
||||||
|
synapse_client_presence synapse_worker_stream-presence;
|
||||||
}
|
}
|
||||||
|
|
||||||
# from https://github.com/tswfi/synapse/commit/b3704b936663cc692241e978dce4ac623276b1a6
|
# from https://github.com/tswfi/synapse/commit/b3704b936663cc692241e978dce4ac623276b1a6
|
||||||
@@ -149,17 +139,24 @@ in
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
services.nginx.upstreams.synapse_master.servers = let
|
services.nginx.upstreams.synapse_master.servers = let
|
||||||
mainListeners = builtins.intersectAttrs
|
isMainListener = l: isListenerType "client" l && isListenerType "federation" l;
|
||||||
(listenerUpstreams.client.http or { })
|
firstMainListener = lib.findFirst isMainListener
|
||||||
(listenerUpstreams.federation.http or { });
|
(throw "No catch-all listener configured") cfg.settings.listeners;
|
||||||
in
|
address = lib.findFirst (_: true) (throw "No address in main listener") firstMainListener.bind_addresses;
|
||||||
assert lib.assertMsg (mainListeners != { })
|
port = firstMainListener.port;
|
||||||
"No catch-all listener configured, or listener is not bound to an address";
|
socketAddress = "${address}:${builtins.toString port}";
|
||||||
mainListeners;
|
in {
|
||||||
|
"${socketAddress}" = { };
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
services.nginx.upstreams.synapse_worker_federation = {
|
services.nginx.upstreams.synapse_worker_federation = {
|
||||||
servers = workerUpstreams.fed-receiver.federation.http or config.services.nginx.upstreams.synapse_master.servers;
|
servers = let
|
||||||
|
fedReceivers = getWorkersOfType "fed-receiver";
|
||||||
|
socketAddresses = generateSocketAddresses "federation" fedReceivers;
|
||||||
|
in if fedReceivers != { } then
|
||||||
|
lib.genAttrs socketAddresses (_: { })
|
||||||
|
else config.services.nginx.upstreams.synapse_master.servers;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
ip_hash;
|
ip_hash;
|
||||||
'';
|
'';
|
||||||
@@ -167,7 +164,12 @@ in
|
|||||||
|
|
||||||
|
|
||||||
services.nginx.upstreams.synapse_worker_initial_sync = {
|
services.nginx.upstreams.synapse_worker_initial_sync = {
|
||||||
servers = workerUpstreams.initial-sync.client.http or config.services.nginx.upstreams.synapse_master.servers;
|
servers = let
|
||||||
|
initialSyncers = getWorkersOfType "initial-sync";
|
||||||
|
socketAddresses = generateSocketAddresses "client" initialSyncers;
|
||||||
|
in if initialSyncers != { } then
|
||||||
|
lib.genAttrs socketAddresses (_: { })
|
||||||
|
else config.services.nginx.upstreams.synapse_master.servers;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
hash $mxid_localpart consistent;
|
hash $mxid_localpart consistent;
|
||||||
'';
|
'';
|
||||||
@@ -175,19 +177,37 @@ in
|
|||||||
|
|
||||||
|
|
||||||
services.nginx.upstreams.synapse_worker_normal_sync = {
|
services.nginx.upstreams.synapse_worker_normal_sync = {
|
||||||
servers = workerUpstreams.normal-sync.client.http or config.services.nginx.upstreams.synapse_master.servers;
|
servers = let
|
||||||
|
normalSyncers = getWorkersOfType "normal-sync";
|
||||||
|
socketAddresses = generateSocketAddresses "client" normalSyncers;
|
||||||
|
in if normalSyncers != { } then
|
||||||
|
lib.genAttrs socketAddresses (_: { })
|
||||||
|
else config.services.nginx.upstreams.synapse_master.servers;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
hash $mxid_localpart consistent;
|
hash $mxid_localpart consistent;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.nginx.upstreams.synapse_worker_stream-presence = {
|
||||||
|
servers = let
|
||||||
|
workers = getWorkersOfType "stream-presence";
|
||||||
|
socketAddresses = generateSocketAddresses "client" workers;
|
||||||
|
in if workers != { } then
|
||||||
|
lib.genAttrs socketAddresses (_: { })
|
||||||
|
else config.services.nginx.upstreams.synapse_master.servers;
|
||||||
|
};
|
||||||
|
|
||||||
services.nginx.upstreams.synapse_worker_user-dir = {
|
services.nginx.upstreams.synapse_worker_user-dir = {
|
||||||
servers = workerUpstreams.user-dir.client.http or config.services.nginx.upstreams.synapse_master.servers;
|
servers = let
|
||||||
|
workers = getWorkersOfType "user-dir";
|
||||||
|
socketAddresses = generateSocketAddresses "client" workers;
|
||||||
|
in if workers != { } then
|
||||||
|
lib.genAttrs socketAddresses (_: { })
|
||||||
|
else config.services.nginx.upstreams.synapse_master.servers;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."${cfg.public_baseurl}" = {
|
services.nginx.virtualHosts."${cfg.public_baseurl}" = {
|
||||||
enableACME = lib.mkDefault true;
|
enableACME = true;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/_matrix" = {
|
locations."/_matrix" = {
|
||||||
proxyPass = "http://$synapse_backend";
|
proxyPass = "http://$synapse_backend";
|
||||||
@@ -219,9 +239,6 @@ in
|
|||||||
locations."/_synapse/client" = {
|
locations."/_synapse/client" = {
|
||||||
proxyPass = "http://$synapse_backend";
|
proxyPass = "http://$synapse_backend";
|
||||||
};
|
};
|
||||||
locations."/.well-known/matrix" = {
|
|
||||||
proxyPass = "http://$synapse_backend";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+46
-161
@@ -1,11 +1,11 @@
|
|||||||
{ matrix-synapse-common-config,
|
{ matrix-synapse-common-config,
|
||||||
matrix-lib,
|
matrix-lib,
|
||||||
wrapped,
|
pluginsEnv,
|
||||||
throw',
|
throw',
|
||||||
format
|
format
|
||||||
}:
|
}:
|
||||||
{ pkgs, lib, options, config, ... }: let
|
{ pkgs, lib, config, ... }: let
|
||||||
opt = options.services.matrix-synapse-next;
|
|
||||||
cfg = config.services.matrix-synapse-next;
|
cfg = config.services.matrix-synapse-next;
|
||||||
wcfg = config.services.matrix-synapse-next.workers;
|
wcfg = config.services.matrix-synapse-next.workers;
|
||||||
|
|
||||||
@@ -13,8 +13,6 @@
|
|||||||
cfgText = "config.services.matrix-synapse-next";
|
cfgText = "config.services.matrix-synapse-next";
|
||||||
wcfgText = "config.services.matrix-synapse-next.workers";
|
wcfgText = "config.services.matrix-synapse-next.workers";
|
||||||
|
|
||||||
usesCustomSigningKeyPath = cfg.settings.signing_key_path != (opt.settings.type.getSubOptions { }).signing_key_path.default;
|
|
||||||
|
|
||||||
inherit (lib) types mkOption mkEnableOption mkIf mkMerge literalExpression;
|
inherit (lib) types mkOption mkEnableOption mkIf mkMerge literalExpression;
|
||||||
|
|
||||||
mkWorkerCountOption = workerType: mkOption {
|
mkWorkerCountOption = workerType: mkOption {
|
||||||
@@ -58,7 +56,7 @@ in {
|
|||||||
|
|
||||||
workerSettingsType = instanceCfg: types.submodule {
|
workerSettingsType = instanceCfg: types.submodule {
|
||||||
freeformType = format.type;
|
freeformType = format.type;
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
worker_app = mkOption {
|
worker_app = mkOption {
|
||||||
type = types.enum [
|
type = types.enum [
|
||||||
@@ -71,21 +69,25 @@ in {
|
|||||||
default = "synapse.app.generic_worker";
|
default = "synapse.app.generic_worker";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
worker_replication_host = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = wcfg.mainReplicationHost;
|
||||||
|
defaultText = literalExpression "${wcfgText}.mainReplicationHost";
|
||||||
|
description = "The replication listeners IP on the main synapse process";
|
||||||
|
};
|
||||||
|
|
||||||
|
worker_replication_http_port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = wcfg.mainReplicationPort;
|
||||||
|
defaultText = literalExpression "${wcfgText}.mainReplicationPort";
|
||||||
|
description = "The replication listeners port on the main synapse process";
|
||||||
|
};
|
||||||
|
|
||||||
worker_listeners = mkOption {
|
worker_listeners = mkOption {
|
||||||
type = types.listOf (workerListenerType instanceCfg);
|
type = types.listOf (workerListenerType instanceCfg);
|
||||||
description = "Listener configuration for the worker, similar to the main synapse listener";
|
description = "Listener configuration for the worker, similar to the main synapse listener";
|
||||||
default = [ ];
|
default = [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
worker_log_config = mkOption {
|
|
||||||
type = types.path;
|
|
||||||
description = ''
|
|
||||||
A yaml python logging config file as described by
|
|
||||||
https://docs.python.org/3.7/library/logging.config.html#configuration-dictionary-schema
|
|
||||||
'';
|
|
||||||
default = pkgs.writeText "log_config.yaml" cfg.mainLogConfig;
|
|
||||||
defaultText = "A config file generated from ${cfgText}.mainLogConfig";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -98,17 +100,10 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
type = with types; nullOr port;
|
type = types.port;
|
||||||
default = null;
|
|
||||||
description = "The TCP port to bind to";
|
description = "The TCP port to bind to";
|
||||||
};
|
};
|
||||||
|
|
||||||
path = mkOption {
|
|
||||||
type = with types; nullOr path;
|
|
||||||
default = null;
|
|
||||||
description = "The UNIX socket to bind to";
|
|
||||||
};
|
|
||||||
|
|
||||||
bind_addresses = mkOption {
|
bind_addresses = mkOption {
|
||||||
type = with types; listOf str;
|
type = with types; listOf str;
|
||||||
description = "A list of local addresses to listen on";
|
description = "A list of local addresses to listen on";
|
||||||
@@ -180,7 +175,7 @@ in {
|
|||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
mainReplicationHost = mkOption {
|
mainReplicationHost = mkOption {
|
||||||
type = with types; nullOr str;
|
type = types.str;
|
||||||
default = let
|
default = let
|
||||||
host = (matrix-lib.connectionInfo mainReplicationListener).host;
|
host = (matrix-lib.connectionInfo mainReplicationListener).host;
|
||||||
in
|
in
|
||||||
@@ -193,32 +188,18 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
mainReplicationPort = mkOption {
|
mainReplicationPort = mkOption {
|
||||||
type = with types; nullOr port;
|
type = types.port;
|
||||||
default = mainReplicationListener.port;
|
default = mainReplicationListener.port;
|
||||||
# TODO: add defaultText
|
# TODO: add defaultText
|
||||||
description = "Port for the main synapse instance's replication listener";
|
description = "Port for the main synapse instance's replication listener";
|
||||||
};
|
};
|
||||||
|
|
||||||
mainReplicationPath = mkOption {
|
|
||||||
type = with types; nullOr path;
|
|
||||||
default = mainReplicationListener.path;
|
|
||||||
# TODO: add defaultText
|
|
||||||
description = "Path to the UNIX socket of the main synapse instance's replication listener";
|
|
||||||
};
|
|
||||||
|
|
||||||
defaultListenerAddress = mkOption {
|
defaultListenerAddress = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "127.0.0.1";
|
default = "127.0.0.1";
|
||||||
description = "The default listener address for the worker";
|
description = "The default listener address for the worker";
|
||||||
};
|
};
|
||||||
|
|
||||||
workersUsePath = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
description = "Whether to enable UNIX sockets for all automatically generated workers";
|
|
||||||
default = true;
|
|
||||||
example = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
workerStartingPort = mkOption {
|
workerStartingPort = mkOption {
|
||||||
type = types.port;
|
type = types.port;
|
||||||
description = "What port should the automatically configured workers start enumerating from";
|
description = "What port should the automatically configured workers start enumerating from";
|
||||||
@@ -245,6 +226,7 @@ in {
|
|||||||
eventPersisters = mkWorkerCountOption "event-persister";
|
eventPersisters = mkWorkerCountOption "event-persister";
|
||||||
|
|
||||||
useUserDirectoryWorker = mkEnableOption "user directory worker";
|
useUserDirectoryWorker = mkEnableOption "user directory worker";
|
||||||
|
usePresenceStreamWriter = mkEnableOption "prescence stream writer";
|
||||||
|
|
||||||
instances = mkOption {
|
instances = mkOption {
|
||||||
type = types.attrsOf workerInstanceType;
|
type = types.attrsOf workerInstanceType;
|
||||||
@@ -266,36 +248,19 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
assertions = [ ]
|
|
||||||
++ (lib.concatMap (worker:
|
|
||||||
(map (l: {
|
|
||||||
assertion = l.path == null -> (l.bind_addresses != [ ] && l.port != null);
|
|
||||||
message = "At least one worker listener is missing either a socket path or a bind_address + port to listen on";
|
|
||||||
}) worker.settings.worker_listeners)
|
|
||||||
) (lib.attrValues wcfg.instances));
|
|
||||||
|
|
||||||
services.matrix-synapse-next.settings = {
|
services.matrix-synapse-next.settings = {
|
||||||
federation_sender_instances =
|
federation_sender_instances =
|
||||||
lib.genList (i: "auto-fed-sender${toString (i + 1)}") wcfg.federationSenders;
|
lib.genList (i: "auto-fed-sender${toString (i + 1)}") wcfg.federationSenders;
|
||||||
|
|
||||||
instance_map = (lib.mkIf (cfg.workers.instances != { }) ({
|
instance_map = genAttrs' (lib.lists.range 1 wcfg.eventPersisters)
|
||||||
main = if wcfg.mainReplicationPath != null then {
|
|
||||||
path = wcfg.mainReplicationPath;
|
|
||||||
} else {
|
|
||||||
host = wcfg.mainReplicationHost;
|
|
||||||
port = wcfg.mainReplicationPort;
|
|
||||||
};
|
|
||||||
} // genAttrs' (lib.lists.range 1 wcfg.eventPersisters)
|
|
||||||
(i: "auto-event-persist${toString i}")
|
(i: "auto-event-persist${toString i}")
|
||||||
(i: let
|
(i: let
|
||||||
wRL = matrix-lib.firstListenerOfType "replication" wcfg.instances."auto-event-persist${toString i}".settings.worker_listeners;
|
wRL = matrix-lib.firstListenerOfType "replication" wcfg.instances."auto-event-persist${toString i}".settings.worker_listeners;
|
||||||
in if wRL.path != null then {
|
in matrix-lib.connectionInfo wRL);
|
||||||
inherit (wRL) path;
|
|
||||||
} else matrix-lib.connectionInfo wRL)));
|
|
||||||
|
|
||||||
stream_writers.events =
|
stream_writers.events =
|
||||||
mkIf (wcfg.eventPersisters > 0)
|
mkIf (wcfg.eventPersisters > 0)
|
||||||
(lib.genList (i: "auto-event-persist${toString (i + 1)}") wcfg.eventPersisters);
|
(lib.genList (i: "auto-event-persist${toString (i + 1)}") wcfg.eventPersisters);
|
||||||
|
|
||||||
update_user_directory_from_worker =
|
update_user_directory_from_worker =
|
||||||
mkIf wcfg.useUserDirectoryWorker "auto-user-dir";
|
mkIf wcfg.useUserDirectoryWorker "auto-user-dir";
|
||||||
@@ -303,15 +268,10 @@ in {
|
|||||||
|
|
||||||
services.matrix-synapse-next.workers.instances = let
|
services.matrix-synapse-next.workers.instances = let
|
||||||
sum = lib.foldl lib.add 0;
|
sum = lib.foldl lib.add 0;
|
||||||
workerListenersWithMetrics = portOffset: name:
|
workerListenersWithMetrics = portOffset:
|
||||||
[(if wcfg.workersUsePath
|
lib.singleton ({
|
||||||
then {
|
port = wcfg.workerStartingPort + portOffset - 1;
|
||||||
path = "${cfg.socketDir}/matrix-synapse-worker-${name}.sock";
|
})
|
||||||
}
|
|
||||||
else {
|
|
||||||
port = wcfg.workerStartingPort + portOffset - 1;
|
|
||||||
}
|
|
||||||
)]
|
|
||||||
++ lib.optional wcfg.enableMetrics {
|
++ lib.optional wcfg.enableMetrics {
|
||||||
port = wcfg.metricsStartingPort + portOffset;
|
port = wcfg.metricsStartingPort + portOffset;
|
||||||
resources = [ { names = [ "metrics" ]; } ];
|
resources = [ { names = [ "metrics" ]; } ];
|
||||||
@@ -322,7 +282,7 @@ in {
|
|||||||
numberOfWorkers,
|
numberOfWorkers,
|
||||||
portOffset ? 0,
|
portOffset ? 0,
|
||||||
nameFn ? i: "auto-${type}${toString i}",
|
nameFn ? i: "auto-${type}${toString i}",
|
||||||
workerListenerFn ? i: name: workerListenersWithMetrics (portOffset + i) name
|
workerListenerFn ? i: workerListenersWithMetrics (portOffset + i)
|
||||||
}: genAttrs'
|
}: genAttrs'
|
||||||
(lib.lists.range 1 numberOfWorkers)
|
(lib.lists.range 1 numberOfWorkers)
|
||||||
nameFn
|
nameFn
|
||||||
@@ -330,7 +290,7 @@ in {
|
|||||||
isAuto = true;
|
isAuto = true;
|
||||||
inherit type;
|
inherit type;
|
||||||
index = i;
|
index = i;
|
||||||
settings.worker_listeners = workerListenerFn i (nameFn i);
|
settings.worker_listeners = workerListenerFn i;
|
||||||
});
|
});
|
||||||
|
|
||||||
workerInstances = {
|
workerInstances = {
|
||||||
@@ -344,6 +304,11 @@ in {
|
|||||||
numberOfWorkers = 1;
|
numberOfWorkers = 1;
|
||||||
nameFn = _: "auto-user-dir";
|
nameFn = _: "auto-user-dir";
|
||||||
};
|
};
|
||||||
|
}) // (lib.optionalAttrs wcfg.usePresenceStreamWriter {
|
||||||
|
"stream-presence" = {
|
||||||
|
numberOfWorkers = 1;
|
||||||
|
nameFn = _: "auto-stream-presence";
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
coerceWorker = { name, value }: if builtins.isInt value then {
|
coerceWorker = { name, value }: if builtins.isInt value then {
|
||||||
@@ -371,52 +336,25 @@ in {
|
|||||||
|
|
||||||
systemd.services = let
|
systemd.services = let
|
||||||
workerList = lib.mapAttrsToList lib.nameValuePair wcfg.instances;
|
workerList = lib.mapAttrsToList lib.nameValuePair wcfg.instances;
|
||||||
workerConfig = worker:
|
workerConfig = worker: format.generate "matrix-synapse-worker-${worker.name}-config.yaml"
|
||||||
format.generate "matrix-synapse-worker-${worker.name}-config.yaml" (
|
(worker.value.settings // { worker_name = worker.name; });
|
||||||
worker.value.settings
|
|
||||||
//
|
|
||||||
{
|
|
||||||
worker_name = worker.name;
|
|
||||||
worker_listeners = map (lib.filterAttrsRecursive (_: v: v != null)) worker.value.settings.worker_listeners;
|
|
||||||
}
|
|
||||||
//
|
|
||||||
# NOTE: the workers cannot pick up creds from `/run/credentials/matrix-synapse.service/*`
|
|
||||||
(lib.optionalAttrs usesCustomSigningKeyPath {
|
|
||||||
signing_key_path = "/run/credentials/matrix-synapse-worker-${worker.name}.service/signing_key";
|
|
||||||
})
|
|
||||||
);
|
|
||||||
in builtins.listToAttrs (lib.flip map workerList (worker: {
|
in builtins.listToAttrs (lib.flip map workerList (worker: {
|
||||||
name = "matrix-synapse-worker-${worker.name}";
|
name = "matrix-synapse-worker-${worker.name}";
|
||||||
value = {
|
value = {
|
||||||
description = "Synapse Matrix Worker";
|
description = "Synapse Matrix Worker";
|
||||||
partOf = [ "matrix-synapse.target" ];
|
partOf = [ "matrix-synapse.target" ];
|
||||||
wantedBy = [ "matrix-synapse.target" ];
|
wantedBy = [ "matrix-synapse.target" ];
|
||||||
after = [
|
after = [ "matrix-synapse.service" ];
|
||||||
"matrix-synapse.service"
|
|
||||||
] ++ (lib.optionals (config.systemd.tmpfiles.settings."10-matrix-synapse" != { }) [
|
|
||||||
"systemd-tmpfiles-setup.service"
|
|
||||||
"systemd-tmpfiles-resetup.service"
|
|
||||||
]);
|
|
||||||
requires = [ "matrix-synapse.service" ];
|
requires = [ "matrix-synapse.service" ];
|
||||||
|
environment.PYTHONPATH = lib.makeSearchPathOutput "lib" cfg.package.python.sitePackages [
|
||||||
environment = lib.optionalAttrs cfg.withJemalloc {
|
pluginsEnv
|
||||||
LD_PRELOAD = "${pkgs.jemalloc}/lib/libjemalloc.so";
|
];
|
||||||
PYTHONMALLOC = "malloc";
|
|
||||||
};
|
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "notify";
|
Type = "notify";
|
||||||
User = "matrix-synapse";
|
User = "matrix-synapse";
|
||||||
Group = "matrix-synapse";
|
Group = "matrix-synapse";
|
||||||
Slice = "system-matrix-synapse.slice";
|
Slice = "system-matrix-synapse.slice";
|
||||||
|
WorkingDirectory = cfg.dataDir;
|
||||||
Restart = "always";
|
|
||||||
RestartSec = 3;
|
|
||||||
|
|
||||||
WorkingDirectory = "/var/lib/matrix-synapse";
|
|
||||||
RuntimeDirectory = "matrix-synapse";
|
|
||||||
StateDirectory = "matrix-synapse";
|
|
||||||
|
|
||||||
ExecStartPre = pkgs.writers.writeBash "wait-for-synapse" ''
|
ExecStartPre = pkgs.writers.writeBash "wait-for-synapse" ''
|
||||||
# From https://md.darmstadt.ccc.de/synapse-at-work
|
# From https://md.darmstadt.ccc.de/synapse-at-work
|
||||||
while ! systemctl is-active -q matrix-synapse.service; do
|
while ! systemctl is-active -q matrix-synapse.service; do
|
||||||
@@ -424,64 +362,11 @@ in {
|
|||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
ExecStart = let
|
ExecStart = let
|
||||||
flags = lib.cli.toCommandLineShellGNU {} {
|
flags = lib.cli.toGNUCommandLineShell {} {
|
||||||
config-path = [ matrix-synapse-common-config (workerConfig worker) ] ++ cfg.extraConfigFiles;
|
config-path = [ matrix-synapse-common-config (workerConfig worker) ] ++ cfg.extraConfigFiles;
|
||||||
keys-directory = "/var/lib/matrix-synapse";
|
keys-directory = cfg.dataDir;
|
||||||
};
|
};
|
||||||
in "${wrapped}/bin/synapse_worker ${flags}";
|
in "${cfg.package}/bin/synapse_worker ${flags}";
|
||||||
|
|
||||||
AmbientCapabilities = [ "" ];
|
|
||||||
CapabilityBoundingSet = [ "" ];
|
|
||||||
LockPersonality = true;
|
|
||||||
NoNewPrivileges = true;
|
|
||||||
PrivateDevices = true;
|
|
||||||
PrivateTmp = true;
|
|
||||||
PrivateUsers = true;
|
|
||||||
ProcSubset = "pid";
|
|
||||||
ProtectClock = true;
|
|
||||||
ProtectControlGroups = true;
|
|
||||||
ProtectHome = true;
|
|
||||||
ProtectHostname = true;
|
|
||||||
ProtectKernelLogs = true;
|
|
||||||
ProtectKernelModules = true;
|
|
||||||
ProtectKernelTunables = true;
|
|
||||||
ProtectProc = "invisible";
|
|
||||||
ProtectSystem = "strict";
|
|
||||||
BindPaths = (lib.optionals (cfg.dataDir != "/var/lib/matrix-synapse") [
|
|
||||||
"${cfg.dataDir}:/var/lib/matrix-synapse"
|
|
||||||
]) ++ (lib.optionals (cfg.settings.media_store_path != "${cfg.dataDir}/media_store") [
|
|
||||||
"${cfg.settings.media_store_path}:/var/lib/matrix-synapse/media_store"
|
|
||||||
]);
|
|
||||||
ReadWritePaths = lib.pipe cfg.settings.listeners [
|
|
||||||
(lib.filter (listener: listener.path != null))
|
|
||||||
(map (listener: dirOf listener.path))
|
|
||||||
(lib.filter (path: path != "/run/matrix-synapse"))
|
|
||||||
lib.uniqueStrings
|
|
||||||
];
|
|
||||||
LoadCredential = lib.mkIf usesCustomSigningKeyPath [
|
|
||||||
"signing_key:${cfg.settings.signing_key_path}"
|
|
||||||
];
|
|
||||||
RemoveIPC = true;
|
|
||||||
RestrictAddressFamilies = [
|
|
||||||
"AF_INET"
|
|
||||||
"AF_INET6"
|
|
||||||
"AF_UNIX"
|
|
||||||
];
|
|
||||||
RestrictNamespaces = true;
|
|
||||||
RestrictRealtime = true;
|
|
||||||
RestrictSUIDSGID = true;
|
|
||||||
SocketBindAllow = lib.pipe worker.value.settings.worker_listeners [
|
|
||||||
(map (lib.filterAttrsRecursive (_: v: v != null)))
|
|
||||||
(lib.catAttrs "port")
|
|
||||||
];
|
|
||||||
SocketBindDeny = "any";
|
|
||||||
SystemCallArchitectures = "native";
|
|
||||||
SystemCallFilter = [
|
|
||||||
"@system-service"
|
|
||||||
"~@resources"
|
|
||||||
"~@privileged"
|
|
||||||
];
|
|
||||||
UMask = "0027";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
{ nixpkgs, pkgs, matrix-lib, ... }:
|
|
||||||
{
|
|
||||||
nginx-pipeline-eval = pkgs.callPackage ./nginx-pipeline { inherit nixpkgs matrix-lib; };
|
|
||||||
|
|
||||||
synapse = pkgs.testers.runNixOSTest ./synapse;
|
|
||||||
synapse-workers = pkgs.testers.runNixOSTest ./synapse-workers;
|
|
||||||
}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
{ nixpkgs, lib, matrix-lib, writeText, ... }:
|
|
||||||
let
|
|
||||||
nixosConfig = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
modules = [
|
|
||||||
../../module.nix
|
|
||||||
{
|
|
||||||
system.stateVersion = "25.11";
|
|
||||||
boot.isContainer = true;
|
|
||||||
services.matrix-synapse-next = {
|
|
||||||
enable = true;
|
|
||||||
enableNginx = true;
|
|
||||||
|
|
||||||
workers = {
|
|
||||||
enableMetrics = true;
|
|
||||||
|
|
||||||
federationSenders = 3;
|
|
||||||
federationReceivers = 3;
|
|
||||||
initialSyncers = 1;
|
|
||||||
normalSyncers = 1;
|
|
||||||
eventPersisters = 1;
|
|
||||||
useUserDirectoryWorker = true;
|
|
||||||
|
|
||||||
instances.auto-fed-receiver1.settings.worker_listeners = [
|
|
||||||
{
|
|
||||||
bind_addresses = [
|
|
||||||
"127.0.0.2"
|
|
||||||
];
|
|
||||||
port = 1337;
|
|
||||||
resources = [
|
|
||||||
{ compress = false;
|
|
||||||
names = [ "federation" ];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
settings.server_name = "example.com";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
inherit (nixosConfig.config.services.matrix-synapse-next.workers) instances;
|
|
||||||
in
|
|
||||||
writeText "matrix-synapse-next-nginx-pipeline-test.txt" ''
|
|
||||||
${(lib.generators.toPretty {}) instances}
|
|
||||||
|
|
||||||
====================================================
|
|
||||||
|
|
||||||
${(lib.generators.toPretty {}) (matrix-lib.mapWorkersToUpstreamsByType instances)}
|
|
||||||
''
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
name = "matrix-synapse-workers";
|
|
||||||
nodes = {
|
|
||||||
server =
|
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
nodes,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../../synapse-module
|
|
||||||
];
|
|
||||||
|
|
||||||
services.postgresql = {
|
|
||||||
enable = true;
|
|
||||||
initialScript = pkgs.writeText "synapse-init.sql" ''
|
|
||||||
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
|
|
||||||
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
|
|
||||||
TEMPLATE template0
|
|
||||||
LC_COLLATE = "C"
|
|
||||||
LC_CTYPE = "C";
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
services.matrix-synapse-next = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
workers.federationSenders = 1;
|
|
||||||
workers.federationReceivers = 1;
|
|
||||||
workers.initialSyncers = 1;
|
|
||||||
workers.normalSyncers = 1;
|
|
||||||
workers.eventPersisters = 1;
|
|
||||||
workers.useUserDirectoryWorker = true;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
server_name = "example.com";
|
|
||||||
database = {
|
|
||||||
args.password = "synapse";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.redis.servers."".enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
testScript = ''
|
|
||||||
server.wait_for_unit("matrix-synapse.target");
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
@@ -1,213 +0,0 @@
|
|||||||
# Modified from https://github.com/NixOS/nixpkgs/blob/nixos-26.05/nixos/tests/matrix/synapse.nix
|
|
||||||
|
|
||||||
{ pkgs, lib, ... }:
|
|
||||||
let
|
|
||||||
mailerCerts = import /${pkgs.path}/nixos/tests/common/acme/server/snakeoil-certs.nix;
|
|
||||||
mailerDomain = mailerCerts.domain;
|
|
||||||
|
|
||||||
registrationSharedSecret = "unsecure123";
|
|
||||||
testUser = "alice";
|
|
||||||
testPassword = "alicealice";
|
|
||||||
testEmail = "alice@example.com";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
name = "matrix-synapse";
|
|
||||||
nodes = {
|
|
||||||
# Since 0.33.0, matrix-synapse doesn't allow underscores in server names
|
|
||||||
server =
|
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
nodes,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
mailserverIP = nodes.mailserver.networking.primaryIPAddress;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../../synapse-module
|
|
||||||
];
|
|
||||||
|
|
||||||
services.matrix-synapse-next = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
registration_shared_secret = registrationSharedSecret;
|
|
||||||
server_name = "example.com";
|
|
||||||
public_baseurl = "https://example.com";
|
|
||||||
|
|
||||||
database = {
|
|
||||||
args.password = "synapse";
|
|
||||||
};
|
|
||||||
|
|
||||||
redis = {
|
|
||||||
enabled = true;
|
|
||||||
host = "localhost";
|
|
||||||
port = config.services.redis.servers.matrix-synapse.port;
|
|
||||||
};
|
|
||||||
|
|
||||||
email = {
|
|
||||||
smtp_host = mailerDomain;
|
|
||||||
smtp_port = 25;
|
|
||||||
require_transport_security = true;
|
|
||||||
notif_from = "matrix <matrix@${mailerDomain}>";
|
|
||||||
app_name = "Matrix";
|
|
||||||
};
|
|
||||||
|
|
||||||
listeners = [
|
|
||||||
{
|
|
||||||
port = 8448;
|
|
||||||
bind_addresses = [
|
|
||||||
"127.0.0.1"
|
|
||||||
"::1"
|
|
||||||
];
|
|
||||||
type = "http";
|
|
||||||
x_forwarded = false;
|
|
||||||
resources = [
|
|
||||||
{
|
|
||||||
names = [
|
|
||||||
"client"
|
|
||||||
];
|
|
||||||
compress = true;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
names = [
|
|
||||||
"federation"
|
|
||||||
];
|
|
||||||
compress = false;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.postgresql = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
# The database name and user are configured by the following options:
|
|
||||||
# - services.matrix-synapse.database_name
|
|
||||||
# - services.matrix-synapse.database_user
|
|
||||||
#
|
|
||||||
# The values used here represent the default values of the module.
|
|
||||||
initialScript = pkgs.writeText "synapse-init.sql" ''
|
|
||||||
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
|
|
||||||
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
|
|
||||||
TEMPLATE template0
|
|
||||||
LC_COLLATE = "C"
|
|
||||||
LC_CTYPE = "C";
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
services.redis.servers.matrix-synapse = {
|
|
||||||
enable = true;
|
|
||||||
port = 6380;
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.extraHosts = ''
|
|
||||||
${mailserverIP} ${mailerDomain}
|
|
||||||
'';
|
|
||||||
|
|
||||||
security.pki.certificateFiles = [
|
|
||||||
mailerCerts.ca.cert
|
|
||||||
];
|
|
||||||
|
|
||||||
environment.systemPackages =
|
|
||||||
let
|
|
||||||
sendTestMailStarttls = pkgs.writeScriptBin "send-testmail-starttls" ''
|
|
||||||
#!${pkgs.python3.interpreter}
|
|
||||||
import smtplib
|
|
||||||
import ssl
|
|
||||||
|
|
||||||
ctx = ssl.create_default_context()
|
|
||||||
|
|
||||||
with smtplib.SMTP('${mailerDomain}') as smtp:
|
|
||||||
smtp.ehlo()
|
|
||||||
smtp.starttls(context=ctx)
|
|
||||||
smtp.ehlo()
|
|
||||||
smtp.sendmail('matrix@${mailerDomain}', '${testEmail}', 'Subject: Test STARTTLS\n\nTest data.')
|
|
||||||
smtp.quit()
|
|
||||||
'';
|
|
||||||
|
|
||||||
obtainTokenAndRegisterEmail =
|
|
||||||
let
|
|
||||||
# adding the email through the API is quite complicated as it involves more than one step and some
|
|
||||||
# client-side calculation
|
|
||||||
insertEmailForAlice = pkgs.writeText "alice-email.sql" ''
|
|
||||||
INSERT INTO user_threepids (user_id, medium, address, validated_at, added_at)
|
|
||||||
VALUES ('${testUser}@server', 'email', '${testEmail}', '1629149927271', '1629149927270');
|
|
||||||
'';
|
|
||||||
in
|
|
||||||
pkgs.writeScriptBin "obtain-token-and-register-email" ''
|
|
||||||
#!${pkgs.runtimeShell}
|
|
||||||
set -o errexit
|
|
||||||
set -o pipefail
|
|
||||||
set -o nounset
|
|
||||||
su postgres -c "psql -d matrix-synapse -f ${insertEmailForAlice}"
|
|
||||||
curl --fail -XPOST -v 'http://localhost:8448/_matrix/client/r0/account/password/email/requestToken' --json '${builtins.toJSON {
|
|
||||||
email = testEmail;
|
|
||||||
client_secret = "foobar";
|
|
||||||
send_attempt = 1;
|
|
||||||
}}'
|
|
||||||
'';
|
|
||||||
in
|
|
||||||
[
|
|
||||||
sendTestMailStarttls
|
|
||||||
pkgs.matrix-synapse
|
|
||||||
obtainTokenAndRegisterEmail
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
# test mail delivery
|
|
||||||
mailserver = args: {
|
|
||||||
security.pki.certificateFiles = [
|
|
||||||
mailerCerts.ca.cert
|
|
||||||
];
|
|
||||||
|
|
||||||
networking.firewall.enable = false;
|
|
||||||
|
|
||||||
services.postfix = {
|
|
||||||
enable = true;
|
|
||||||
enableSubmission = true;
|
|
||||||
|
|
||||||
# blackhole transport
|
|
||||||
transport = "example.com discard:silently";
|
|
||||||
|
|
||||||
settings.main = {
|
|
||||||
myhostname = "${mailerDomain}";
|
|
||||||
# open relay for subnet
|
|
||||||
mynetworks_style = "subnet";
|
|
||||||
debug_peer_level = "10";
|
|
||||||
smtpd_relay_restrictions = [
|
|
||||||
"permit_mynetworks"
|
|
||||||
"reject_unauth_destination"
|
|
||||||
];
|
|
||||||
|
|
||||||
# disable obsolete protocols, something old versions of twisted are still using
|
|
||||||
smtpd_tls_protocols = "TLSv1.3, TLSv1.2, !TLSv1.1, !TLSv1, !SSLv2, !SSLv3";
|
|
||||||
smtpd_tls_mandatory_protocols = "TLSv1.3, TLSv1.2, !TLSv1.1, !TLSv1, !SSLv2, !SSLv3";
|
|
||||||
smtpd_tls_chain_files = [
|
|
||||||
"${mailerCerts.${mailerDomain}.key}"
|
|
||||||
"${mailerCerts.${mailerDomain}.cert}"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
testScript = ''
|
|
||||||
start_all()
|
|
||||||
mailserver.wait_for_unit("postfix.service")
|
|
||||||
server.succeed("send-testmail-starttls")
|
|
||||||
server.wait_for_unit("matrix-synapse.service")
|
|
||||||
server.wait_until_succeeds(
|
|
||||||
"curl --fail -L http://localhost:8448/"
|
|
||||||
)
|
|
||||||
server.wait_until_succeeds(
|
|
||||||
"journalctl -u matrix-synapse.service | grep -q 'Connected to redis'"
|
|
||||||
)
|
|
||||||
server.require_unit_state("postgresql.target")
|
|
||||||
server.succeed("register_new_matrix_user -u ${testUser} -p ${testPassword} -a -k ${registrationSharedSecret} 'http://localhost:8448/'")
|
|
||||||
server.succeed("obtain-token-and-register-email")
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user