[unix_http_server]
file=/var/run/supervisor.sock   ; the path to the socket file
username=null
password=null

[supervisord]
logfile=/var/log/supervisor/supervisord.log ; main log file; default $CWD/supervisord.log
pidfile=/var/run/supervisord.pid ; supervisord pidfile; default supervisord.pid

[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL  for a unix socket
username=null
password=null

[program:{{ project }}]
command=/var/www/{{ project }}/gunicorn_start
user={{ project }}
redirect_stderr=true

[program:memcached]
user=memcache
command=/usr/bin/memcached -v -p 11211 -m 64 -c 1024 -t 4
autostart=true
autorestart=true
