Docker setup: Tune some nginx parameters

This commit is contained in:
Raphael Michel
2020-12-16 12:42:49 +01:00
parent 1f9adcce6e
commit 33ba4daadb

View File

@@ -1,10 +1,13 @@
user www-data www-data;
worker_processes 1;
worker_processes auto;
pid /var/run/nginx.pid;
daemon off;
worker_rlimit_nofile 262144;
events {
worker_connections 4096;
worker_connections 16384;
multi_accept on;
use epoll;
}
http {