diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-09-07 04:05:27 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-09-07 04:05:27 +0200 |
commit | 732175b63a4852e05d37f2cbdd25e51f1fda7c9b (patch) | |
tree | 1dbc0b18272a8dee2056be6f19014364a294fca9 | |
parent | oops, forgot an import (diff) | |
download | Rory-Open-Architecture-732175b63a4852e05d37f2cbdd25e51f1fda7c9b.tar.xz |
Fixes?
-rwxr-xr-x | host/Rory-nginx/services/nginx/rory.gay/pcpoc.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/host/Rory-nginx/services/nginx/rory.gay/pcpoc.nix b/host/Rory-nginx/services/nginx/rory.gay/pcpoc.nix index 2e502c7..ce00d28 100755 --- a/host/Rory-nginx/services/nginx/rory.gay/pcpoc.nix +++ b/host/Rory-nginx/services/nginx/rory.gay/pcpoc.nix @@ -1,9 +1,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"; + proxyPass = "http://192.168.100.10:80"; }; }; } \ No newline at end of file |