increase maximum connections

This commit is contained in:
Daniel Micay 2020-11-24 01:54:52 -05:00
parent 7c2af64380
commit b336f664ad

View File

@ -1,9 +1,10 @@
user www-data; user www-data;
worker_processes auto; worker_processes auto;
worker_rlimit_nofile 8192;
pid /run/nginx.pid; pid /run/nginx.pid;
events { events {
worker_connections 768; worker_connections 4096;
} }
http { http {