blob: 1fe2083875e3e610a42d3eab3d2652297a045085 (
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
|
{
root = "/data/nginx/html_rory_gay";
enableACME = true;
addSSL = true;
extraConfig = ''
autoindex on;'';
locations."= /.well-known/matrix/server".extraConfig = ''
add_header Content-Type application/json;
add_header Access-Control-Allow-Origin *;
return 200 '${builtins.toJSON {
"m.server" = "matrix.rory.gay:443";
}}';
'';
locations."= /.well-known/matrix/client".extraConfig = ''
add_header Content-Type application/json;
add_header Access-Control-Allow-Origin *;
return 200 '${builtins.toJSON {
"m.homeserver".base_url = "https://matrix.rory.gay";
"m.identity_server".base_url = "https://matrix.rory.gay";
}
}';
'';
locations."= /.well-known/matrix/support".extraConfig = ''
add_header Content-Type application/json;
add_header Access-Control-Allow-Origin *;
return 200 '${builtins.toJSON {
admins = [
{
matrix_id = "@emma:rory.gay";
role = "admin";
},
{
matrix_id = "@alicia:rory.gay";
role = "admin";
},
{
matrix_id = "@root:rory.gay";
role = "admin";
},
{
matrix_id = "@rory:rory.gay";
role = "admin";
}
];
}
}';
'';
}
|