summary refs log tree commit diff
path: root/host/Rory-nginx/services/nginx/thearcanebrony.net/root.nix
blob: 86dddac624cb75defdc93f88d0ab486a0f8f6626 (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
{
  enableACME = true;
  addSSL = true;
  root = "/data/nginx/html_thearcanebrony";
  extraConfig = ''autoindex on;'';
  locations = {
    "/" = {
      #index = "index.html";
    };
    "/destroy" = {
      return = "301 https://gitlab.com/KinoshitaProductions/SecureDestroyer/-/raw/master/run";
    };
    "= /.well-known/matrix/support".extraConfig = ''
      more_set_headers 'Content-Type application/json';
      more_set_headers '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";
            }
          ];
        }
      }';
    '';
  };
}