使用 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 行吗?或者最好的方法是什么?