From 33a340eb899f918533c274db08a82aec4604b630 Mon Sep 17 00:00:00 2001 From: Pavel Dmitriev Date: Mon, 28 Nov 2022 18:37:19 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'rootfs/etc/nginx/nginx.conf'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit increased workers and added multi_accept on --- rootfs/etc/nginx/nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootfs/etc/nginx/nginx.conf b/rootfs/etc/nginx/nginx.conf index 62255c5..07d8536 100644 --- a/rootfs/etc/nginx/nginx.conf +++ b/rootfs/etc/nginx/nginx.conf @@ -7,7 +7,8 @@ error_log /var/log/nginx/nginx.error.log; events { use epoll; - worker_connections 1024; + worker_connections 8192; + multi_accept on; } include upstreams/*;