mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-10 21:25:24 +03:00
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:
parent
8163c036ef
commit
dda0733f6a
@ -1,6 +1,6 @@
|
||||
daemon off;
|
||||
user root;
|
||||
worker_processes auto;
|
||||
worker_processes 1;
|
||||
|
||||
error_log /dev/stdout warn;
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user