Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jasonjayr on github.
  • I am jasonjayr (https://keybase.io/jasonjayr) on keybase.
  • I have a public key ASCeBl84QvoICfsIH19SegSB15ENQLMJTEEjL5YxAHaGyAo

To claim this, I am signing this object:

@jasonjayr
jasonjayr / graphite
Created August 13, 2012 23:29 — forked from shawn-sterling/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 {