Skip to content

Instantly share code, notes, and snippets.

View sohamnavadiya's full-sized avatar
🎯
Focusing

Soham Navadiya sohamnavadiya

🎯
Focusing
View GitHub Profile
@timmyomahony
timmyomahony / nginx.conf
Created June 26, 2011 13:29
Python, UWSGI, Supervisor & Nginx
upstream uwsgi {
ip_hash;
server 127.0.0.1:40000;
}
server {
listen 80;
server_name www.domain.com;
root /sites/mysite/;
access_log /sites/mysite/log/nginx/access.log;