fix(nginx): use 1 worker process

The value 'auto' will create a worker process for each CPU thread, which
can be problematic in containerised environments with CPU limits. A
single NGINX worker process should be more than sufficient.

Fixes: #10898
This commit is contained in:
Thomas Way 2024-04-09 13:00:12 +01:00
parent 8163c036ef
commit dda0733f6a
No known key found for this signature in database
GPG Key ID: F98E7FF1F9F8C217

View File

@ -1,6 +1,6 @@
daemon off;
user root;
worker_processes auto;
worker_processes 1;
error_log /dev/stdout warn;
pid /var/run/nginx.pid;