disable nginx jit and multi_accept

This commit is contained in:
Daniel Olsen 2025-05-10 11:13:51 +02:00
parent 20ade0d619
commit 13a270b8ed

View File

@ -20,14 +20,14 @@
recommendedGzipSettings = true; recommendedGzipSettings = true;
appendConfig = '' appendConfig = ''
pcre_jit on; # pcre_jit on;
worker_processes auto; worker_processes auto;
worker_rlimit_nofile 100000; worker_rlimit_nofile 100000;
''; '';
eventsConfig = '' eventsConfig = ''
worker_connections 2048; worker_connections 2048;
use epoll; use epoll;
multi_accept on; # multi_accept on;
''; '';
}; };