From 2e335daba8c12db5ce057a207139c3f8d3207aed Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 23 Sep 2023 00:00:05 +0200 Subject: [PATCH] nginx: fix http3 --- system/nixos/nginx.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/system/nixos/nginx.nix b/system/nixos/nginx.nix index f1bda67..34ca929 100644 --- a/system/nixos/nginx.nix +++ b/system/nixos/nginx.nix @@ -25,8 +25,9 @@ access_log /var/log/nginx/access.log combined_anon buffer=32k flush=5m; ''; - appendConfig = '' - worker_processes auto; - ''; + # Currently breaks HTTP3 + # appendConfig = '' + # worker_processes auto; + # ''; }; }