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