summary refs log tree commit diff
path: root/host/Rory-nginx/services/nginx/rory.gay/matrix_unit_tests.nix
blob: 65a2c6c51297ed9820e30b8a78253f4ae9e2378e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  enableACME = true;
  addSSL = true;
  http3 = true;
  http3_hq = true;
  kTLS = true;
  extraConfig = ''
    brotli off;
    '';
  locations = {
    "/" = {
      proxyPass = "http://192.168.100.13:80";
    };
  };
}