Skip to content

Instantly share code, notes, and snippets.

View snakecharmer's full-sized avatar

Paolo Garri snakecharmer

  • @Seven.One Entertainment
  • Munich, DE
View GitHub Profile
@snakecharmer
snakecharmer / graphite
Created March 14, 2017 08:39 — forked from drawks/graphite
Graphite on uwsgi/nginx
#This is the "site config" for nginx
upstream django {
# Distribute requests to servers based on client IP. This keeps load
# balancing fair but consistent per-client. In this instance we're
# only using one uWGSI worker anyway.
ip_hash;
server unix:/tmp/uwsgi.sock;
}
server {