From 65e1272640fd0274ebe974efb831b2dde2eea9c7 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 18 Mar 2024 17:39:10 -0400 Subject: [PATCH] nginx: double per-worker connection and file limit --- nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index cd1fb5b4..523072ea 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -7,10 +7,10 @@ error_log syslog:server=unix:/dev/log,nohostname; error_log stderr emerg; worker_processes auto; -worker_rlimit_nofile 16384; +worker_rlimit_nofile 32768; events { - worker_connections 4096; + worker_connections 8192; } http {