blob: 2b0c7fbcd8a7f2679015a6d20f1da150726fcf9c (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{ config, ... }:
let
domain = config.userdata.domain;
email = config.userdata.email;
fscusat = "fscusat.org";
in
{
imports = [
./dendrite.nix
./cgit.nix
];
networking.firewall.allowedTCPPorts = [ 80 443 ];
security.acme = {
acceptTerms = true;
defaults.email = email;
};
services.nginx = {
enable = true;
virtualHosts = {
"${domain}" = {
forceSSL = true;
enableACME = true;
globalRedirect = "www.${domain}";
extraConfig = ''
client_max_body_size ${toString config.services.dendrite.settings.media_api.max_file_size_bytes};
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 600;
'';
locations."/_matrix" = {
proxyPass = "http://127.0.0.1:${toString config.services.dendrite.httpPort}";
};
locations."/.well-known/matrix/server".return = ''
200 '{ "m.server": "${domain}:443" }'
'';
};
"www.${domain}" = {
forceSSL = true;
enableACME = true;
root = "/var/www/${domain}";
};
"${fscusat}" = {
forceSSL = true;
enableACME = true;
globalRedirect = "www.${fscusat}";
};
"www.${fscusat}" = {
forceSSL = true;
enableACME = true;
extraConfig = ''
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 600;
'';
locations."/" = {
return = "200 '<h1>under construction</h1>'";
extraConfig = "add_header Content-Type text/html;";
};
};
};
};
}
|