about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorRyan Lahfa <masterancpp@gmail.com>2024-01-12 19:49:18 +0100
committerGitHub <noreply@github.com>2024-01-12 19:49:18 +0100
commit3287441158d36d15257902e4579d31ef422b130f (patch)
tree06863073f17618922861883358181a8c27b9bf77 /nixos/doc
parenta2498cdd00172b5da68b9c201dd5130f1e32d563 (diff)
parent2fb0b52c5072da82e31ca58b46a673fd3876e0d5 (diff)
downloadnixlib-3287441158d36d15257902e4579d31ef422b130f.tar
nixlib-3287441158d36d15257902e4579d31ef422b130f.tar.gz
nixlib-3287441158d36d15257902e4579d31ef422b130f.tar.bz2
nixlib-3287441158d36d15257902e4579d31ef422b130f.tar.lz
nixlib-3287441158d36d15257902e4579d31ef422b130f.tar.xz
nixlib-3287441158d36d15257902e4579d31ef422b130f.tar.zst
nixlib-3287441158d36d15257902e4579d31ef422b130f.zip
Merge pull request #275484 from Izorkin/update-nginx-http3
nixos/nginx: disable automatic advertise of HTTP/3 protocol support
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2405.section.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2405.section.md b/nixos/doc/manual/release-notes/rl-2405.section.md
index 5c05ad780d90..89419068742f 100644
--- a/nixos/doc/manual/release-notes/rl-2405.section.md
+++ b/nixos/doc/manual/release-notes/rl-2405.section.md
@@ -68,6 +68,18 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
 - `mkosi` was updated to v19. Parts of the user interface have changed. Consult the
   [release notes](https://github.com/systemd/mkosi/releases/tag/v19) for a list of changes.
 
+- `services.nginx` will no longer advertise HTTP/3 availability automatically. This must now be manually added, preferably to each location block.
+  Example:
+
+  ```nix
+    locations."/".extraConfig = ''
+      add_header Alt-Svc 'h3=":$server_port"; ma=86400';
+    '';
+    locations."^~ /assets/".extraConfig = ''
+      add_header Alt-Svc 'h3=":$server_port"; ma=86400';
+    '';
+
+  ```
 - The `kanata` package has been updated to v1.5.0, which includes [breaking changes](https://github.com/jtroo/kanata/releases/tag/v1.5.0).
 
 - The latest available version of Nextcloud is v28 (available as `pkgs.nextcloud28`). The installation logic is as follows: