Bump nginx limits (#278)

This commit is contained in:
Maciej Hirsz
2020-08-20 13:54:17 +02:00
committed by GitHub
parent 525f95b92a
commit e9f2e119e7
+3 -2
View File
@@ -1,11 +1,12 @@
user nginx;
worker_processes 1;
worker_processes auto;
worker_rlimit_nofile 30000;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
worker_connections 8000;
}
http {