From 13a270b8ed844b14af3567f9251477123bcdf113 Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Sat, 10 May 2025 11:13:51 +0200 Subject: [PATCH] disable nginx jit and multi_accept --- base/services/nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/services/nginx.nix b/base/services/nginx.nix index 7140c64..ee7b602 100644 --- a/base/services/nginx.nix +++ b/base/services/nginx.nix @@ -20,14 +20,14 @@ recommendedGzipSettings = true; appendConfig = '' - pcre_jit on; + # pcre_jit on; worker_processes auto; worker_rlimit_nofile 100000; ''; eventsConfig = '' worker_connections 2048; use epoll; - multi_accept on; + # multi_accept on; ''; };