From a866db2f377ccbc703823b4bf60444baed2deb1f Mon Sep 17 00:00:00 2001 From: Tim de Pater Date: Tue, 15 Dec 2020 10:25:52 +0100 Subject: [PATCH] Let nginx determine the amount of worker processes based on the number of CPU's --- config/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nginx.conf b/config/nginx.conf index d347bab..7e90659 100644 --- a/config/nginx.conf +++ b/config/nginx.conf @@ -1,4 +1,4 @@ -worker_processes 1; +worker_processes auto; error_log stderr warn; pid /run/nginx.pid;