remove the QUIC-Status header

This commit is contained in:
Charlotte 🦝 Delenk 2022-02-09 15:45:13 +01:00
parent d06baee6f1
commit 39deacbb28
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
3 changed files with 0 additions and 3 deletions

View file

@ -3,7 +3,6 @@ let
listenIPs = (import ../../utils/getInternalIP.nix config).listenIPs;
listenStatements = lib.concatStringsSep "\n" (builtins.map (ip: "listen ${ip}:443 http3;") listenIPs) + ''
add_header Alt-Svc 'h3=":443"';
add_header QUIC-Status $quic;
'';
in
{

View file

@ -3,7 +3,6 @@ let
listenIPs = (import ../../utils/getInternalIP.nix config).listenIPs;
listenStatements = lib.concatStringsSep "\n" (builtins.map (ip: "listen ${ip}:443 http3;") listenIPs) + ''
add_header Alt-Svc 'h3=":443"';
add_header QUIC-Status $quic;
'';
in
{

View file

@ -42,7 +42,6 @@
listen 0.0.0.0:443 http3;
listen [::]:443 http3;
add_header Alt-Svc 'h3=":443"';
add_header QUIC-Status $quic;
'';
});
};