On Mon, Oct 24, 2011 at 03:27:32PM -0400, Ilan Berkner wrote:
> Is there a way to confirm / see which event model Nginx is using?
>
> i.e. "select", "epoll", "kqueue", etc.?
Just write explictly:
events {
use epoll;
}
If nginx can not use this method it will complain in error_log.
--
Igor Sysoev