Skip to content

Instantly share code, notes, and snippets.

View raullenchai's full-sized avatar
🎯
Focusing

Raullen Chai raullenchai

🎯
Focusing
View GitHub Profile
@raullenchai
raullenchai / tornado-nginx-example.conf
Created July 5, 2012 16:47 — 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;
}