summary refs log tree commit diff
path: root/host/Rory-nginx/hosts/thearcanebrony.net/awooradio.nix
blob: 349322ff9217a9e27d6d8f2cb50e2c599a63e479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  locations = {
    "/" = {
      extraConfig = ''
        rewrite ^/api/(.*) /$1 break;
        return 200 $request_uri;'';
      proxyPass = "http://localhost:4998";
    };
  };
}