Skip to content

Instantly share code, notes, and snippets.

View code7day's full-sized avatar

Edu. Flores code7day

View GitHub Profile
@code7day
code7day / tornado-nginx-example.conf
Created October 9, 2012 06:16 — forked from didip/tornado-nginx-example.conf
Nginx config example for Tornado
worker_processes 2;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
}