1

使用 Django-supervisor(https://github.com/rfk/django-supervisor),我试图找出一种python myproject/manage.py supervisor --daemonize在我的uwsgi新贵脚本启动 Django 时启动的方法。

这是我的 uwsgi 脚本:

root@community:/etc/init# cat uwsgi.conf

#This version is for Community Service

description "uwsgi tiny instance"

start on runlevel [2345]
stop on runlevel [06]

exec uwsgi --die-on-term --ini /home/community/uwsgi/community_forums.ini

我可以添加一个额外的 exec 行吗?或者最好的方法是什么?

4

1 回答 1

0

创建一个新的暴发户工作并拥有它start on started uwsgi,并且stop on stopping uwsgi。从您的 django-supervisor 行中删除 --daemonize 选项并将其设置为您的 exec。

于 2014-06-26T18:08:43.217 回答