Remove use epoll

Nginx automatically selects most efficient method.
When you say `use epoll`, you make your configs workable only on Linux servers, no *BSD or Windows.
This commit is contained in:
Selivanov Pavel
2018-01-22 04:53:58 +03:00
committed by GitHub
parent 9893e41522
commit 0f34bd0ed1

View File

@@ -6,7 +6,6 @@ worker_rlimit_nofile 409600;
events {
worker_connections 4096;
multi_accept on;
use epoll;
}
http {