Se você está no ubuntu, então não acho que as instruções do CentOS funcionem. Extraído do tutorial DigitalOcean, você deve criar o arquivo .conf para o upstart:
description "Gunicorn application server handling myproject"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
setude user
setgid www-data
chdir /home/webapps
exec /home/webapps/games/venv/bin/gunicorn --workers 3 --bind unix:/home/webapps/games/games.sock games.wsgi:application
Notas
- o usuário deve ser o usuário que possui o ambiente e o projeto e para o grupo seu grupo.
- O arquivo deve estar em /etc/init/gunicorn.conf.
- Arquivos de log para o gunicorn upstart estariam em /var/log/upstart/gunicorn.conf
você