I've configured nginx to run django site via socket:
fastcgi_pass unix:/tmp/django.socket;
now I'm (manually) running
./manage.py runfcgi socket=/tmp/django.socket
http request results in 502 bad gateway, and the error is following:
connect() to unix:/tmp/django.socket failed (13: Permission denied) while connecting to upstream,
what permissions should I set, to be able to restart django fcgi easily?