summary refs log tree commit diff
path: root/host/Rory-nginx/hosts/rory.gay/mru.nix
blob: 9b30df4b459592d2bdf3a3e57a4fa517568db2ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  enableACME = true;
  addSSL = true;
  root = "/data/nginx/mru";
  locations = {
    "/" = {
      index = "index.html";
      extraConfig = ''
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
        add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
      '';
    };
  };
}