summary refs log tree commit diff
path: root/host/Rory-nginx/services/nginx/rory.gay/wad-api.nix
blob: 65e9bdb1acc8a46801d34774ddcc15c0c0bdf414 (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
{
  enableACME = true;
  addSSL = true;
  locations = {
    "/" = {
      proxyPass = "https://youthapp.inuits.dev";
      recommendedProxySettings = false;
      extraConfig = ''
        proxy_ssl_verify off;
        proxy_set_header Host youthapp.inuits.dev;
        proxy_ssl_server_name on;

          more_set_headers 'Access-Control-Allow-Origin: *';
          more_set_headers 'Access-Control-Allow-Methods: *';
          #
          # Custom headers and headers various browsers *should* be OK with but aren't
          #
          more_set_headers 'Access-Control-Allow-Headers: *, Authorization';
          #
          # Tell client that this pre-flight info is valid for 20 days
          # 
          more_set_headers 'Access-Control-Max-Age: 1728000';

        if ($request_method = 'OPTIONS') {
          more_set_headers 'Content-Type: text/plain; charset=utf-8';
          more_set_headers 'Content-Length: 0';
          return 204;
        }
      '';
    };
  };
}