Update nginx.conf

This commit is contained in:
Joshua Schnabel
2020-04-24 16:46:54 +02:00
committed by GitHub
parent 3ed686189e
commit 1a5b692b88

View File

@ -1,9 +1,13 @@
user www-data;
worker_processes 1;
daemon off; daemon off;
pid /var/run/nginx.pid; pid /var/run/nginx.pid;
events { events {
worker_connections 5; worker_connections 1024;
use epoll;
multi_accept off;
} }
http { http {