blob: 425b69c5d803bb9cd42807537297d2d3b24b47bb (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
config,
lib,
...
}:
with lib;
let
cfg = config.modules.services.website;
in
{
options.modules.services.website = {
enable = mkEnableOption "website";
url = mkOption {
type = types.str;
};
federating = mkOption {
default = false;
type = types.bool;
description = "Federating a matrix server on this domain.";
};
};
config = mkIf cfg.enable {
networking.firewall.allowedTCPPorts = [
80
443
];
services.caddy = {
enable = true;
virtualHosts = {
${cfg.url}.extraConfig =
let
synapseUrl = "synapse.${cfg.url}";
synapseBaseUrl = "https://${synapseUrl}";
in
(
if cfg.federating then
''
handle /.well-known/matrix/server {
header Content-Type application/json
header Access-Control-Allow-Origin *
respond `{"m.server": "${synapseUrl}:443"}`
}
handle /.well-known/matrix/client {
header Content-Type application/json
header Access-Control-Allow-Origin *
respond `{"m.homeserver": {"base_url": "${synapseBaseUrl}"}}`
}
''
else
""
)
+ ''
root * /var/www/${cfg.url}/
encode zstd gzip
file_server
'';
};
};
};
}
|