Skip to content

Instantly share code, notes, and snippets.

View waghanza's full-sized avatar
🚀
Always learning

Marwan Rabbâa waghanza

🚀
Always learning
View GitHub Profile
@waghanza
waghanza / nginx.conf
Created March 5, 2012 15:15 — forked from thewebfellas/nginx.conf
sample nginx.conf for thin
user nginx;
worker_processes 5;
error_log /var/log/nginx.error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}