From 0f34bd0ed1b2792f8dc09f7c78494f40febe9e30 Mon Sep 17 00:00:00 2001 From: Selivanov Pavel Date: Mon, 22 Jan 2018 04:53:58 +0300 Subject: [PATCH] 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. --- public/templates/nginx.conf.html | 1 - 1 file changed, 1 deletion(-) diff --git a/public/templates/nginx.conf.html b/public/templates/nginx.conf.html index 8961730..a42d9f7 100644 --- a/public/templates/nginx.conf.html +++ b/public/templates/nginx.conf.html @@ -6,7 +6,6 @@ worker_rlimit_nofile 409600; events { worker_connections 4096; multi_accept on; - use epoll; } http {