blob: b60f3cdeccb53370e8052a6d9a691d5404b05f22 (
plain)
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
|
{ config, lib, pkgs, ... }:
let
cfg = config.matrix;
in
{
options.matrix = {
serverName = lib.mkOption {
type = lib.types.str;
};
apiDomain = lib.mkOption {
type = lib.types.str;
};
};
config = {
services = {
matrix-synapse = {
enable = true;
settings = {
server_name = cfg.serverName;
};
};
nginx.virtualHosts.${cfg.apiDomain} = {
enableACME = true;
forceSSL = true;
# TODO: add locations."/" with some message
# Forward all Matrix API calls to the synapse Matrix homeserver. A trailing slash
# *must not* be used here.
locations."/_matrix".proxyPass = "http://127.0.0.1:8008";
# Forward requests for e.g. SSO and password-resets.
locations."/_synapse/client".proxyPass = "http://127.0.0.1:8008";
};
};
};
}
|