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.
pull/3/head
Selivanov Pavel 7 years ago committed by GitHub
parent 9893e41522
commit 0f34bd0ed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save