Bonjour,
J'essaye de trouver une façon facile de faire fonctionner gunicorn sur Debian (j'utilise nginx) pour faire marcher un projet Django et je suis ce tutoriel.
J'ai crée un fichier gunicorn.conf dans /etc/init/ :
1 2 3 4 5 6 7 8 9 10 11 | description "Gunicorn application server handling myproject" start on runlevel [2345] stop on runlevel [!2345] respawn setuid user setgid www-data chdir /var/web/www exec /var/web/www/www_venv/bin/gunicorn --workers 3 --bind unix:/var/web/www/myproject.sock myproject.wsgi:application |
Mais "service start gunicorn" me renvoie "gunicorn: unrecognized service"
Savez-vous pourquoi cela ne fonctionne pas ou avez vous une solution plus facile pour mettre en place Gunicorn ?
Merci d'avance !
+0
-0