# apt-get install uwsgi-plugin-python uwsgi uwsgi-core
nginx.conf:
...
upstream graphite {
server unix:/tmp/graphite.sock;
}
...
location / {
uwsgi_pass graphite;
include uwsgi_params;
}
...