From 682a435f042622f0f62a1f5e4366542f41267cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Thu, 23 Feb 2023 14:17:41 +0000 Subject: [PATCH] fix: nginx config workers (#257) --- docker/nginx/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf index ae04205b..0fae1c60 100644 --- a/docker/nginx/nginx.conf +++ b/docker/nginx/nginx.conf @@ -4,6 +4,8 @@ error_log /dev/stdout info; events { worker_connections 2048; + worker_processes auto; + worker_rlimit_nofile 50000; } http {