Skip to content

Instantly share code, notes, and snippets.

@nenadom
nenadom / nginx.conf
Created April 6, 2018 06:48 — forked from jonluca/nginx.conf
Nginx Conf
worker_processes auto;
pid /run/nginx.pid;
worker_rlimit_nofile 30000;
events {
worker_connections 65535;
multi_accept on;
use epoll;
}