summary refs log tree commit diff
path: root/host/Rory-nginx/hosts/rory.gay/root.nix
blob: c3dfb2f2d651cd893c3bde9fa0eb4a68ea8b0b32 (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
{
  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" = {};
    }
    }';
  ''; 
}