nginx: disable http/3

quictls is unmaintained for 5 months now
This commit is contained in:
Rouven Seifert 2024-07-02 10:43:23 +02:00
parent 4df70a68cc
commit d2e06a075e
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09

View file

@ -7,14 +7,10 @@
({ name, ... }: {
enableACME = true;
forceSSL = true;
# enable http3 for all hosts
quic = true;
http3 = true;
# split up nginx access logs per vhost
extraConfig = ''
access_log /var/log/nginx/${name}_access.log;
error_log /var/log/nginx/${name}_error.log;
add_header Alt-Svc 'h3=":443"; ma=86400';
'';
})
);