summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/web-servers
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2023-12-19 22:31:46 +0300
committerIzorkin <izorkin@elven.pw>2024-01-01 02:29:01 +0300
commit2fb0b52c5072da82e31ca58b46a673fd3876e0d5 (patch)
tree52bcb23e809d7867ac4a80cc81af412d8b195c2e /nixos/modules/services/web-servers
parent4c896726d7a07892739873bbb40f4139cfb55522 (diff)
nixos/nginx: disable automatic advertise of HTTP/3 protocol support
Automatic advertise in the `http` block about support of HTTP/3 protocol makes it difficult to automatically configure services to work with it. HTTP/3 availability must be manually advertised, preferably in each location block.
Diffstat (limited to 'nixos/modules/services/web-servers')
-rw-r--r--nixos/modules/services/web-servers/nginx/default.nix6
-rw-r--r--nixos/modules/services/web-servers/nginx/vhost-options.nix7
2 files changed, 3 insertions, 10 deletions
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index f44400eb4159..a3ee36093022 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -408,12 +408,6 @@ let
ssl_conf_command Options KTLS;
''}
- ${optionalString (hasSSL && vhost.quic && vhost.http3)
- # Advertise that HTTP/3 is available
- ''
- add_header Alt-Svc 'h3=":$server_port"; ma=86400';
- ''}
-
${mkBasicAuth vhostName vhost}
${optionalString (vhost.root != null) "root ${vhost.root};"}
diff --git a/nixos/modules/services/web-servers/nginx/vhost-options.nix b/nixos/modules/services/web-servers/nginx/vhost-options.nix
index 64a95afab9f4..ea98439d3823 100644
--- a/nixos/modules/services/web-servers/nginx/vhost-options.nix
+++ b/nixos/modules/services/web-servers/nginx/vhost-options.nix
@@ -235,9 +235,9 @@ with lib;
which can be achieved by setting `services.nginx.package = pkgs.nginxQuic;`
and activate the QUIC transport protocol
`services.nginx.virtualHosts.<name>.quic = true;`.
- Note that HTTP/3 support is experimental and
- *not* yet recommended for production.
+ Note that HTTP/3 support is experimental and *not* yet recommended for production.
Read more at https://quic.nginx.org/
+ HTTP/3 availability must be manually advertised, preferably in each location block.
'';
};
@@ -250,8 +250,7 @@ with lib;
which can be achieved by setting `services.nginx.package = pkgs.nginxQuic;`
and activate the QUIC transport protocol
`services.nginx.virtualHosts.<name>.quic = true;`.
- Note that special application protocol support is experimental and
- *not* yet recommended for production.
+ Note that special application protocol support is experimental and *not* yet recommended for production.
Read more at https://quic.nginx.org/
'';
};