- [program:gunicorn]
- command=gunicorn -w1 -b0.0.0.0:21332 --error-logfile /opt/webhooks/log/error.log --access-logfile /opt/webhooks/log/access.log webhooks:app ;应用入口
- user=webhooks
- directory=/opt/webhooks/ ;web目录
- startsecs=0 ;启动时间
- stopwaitsecs=0 ;终止等待时间
- autostart=true ;是否自动启动
- autorestart=true ;是否自动重启
- redirect_stderr=true ;错误日志输出到标准日志
- stdout_logfile=/dev/null ;标准日志不输出
- stdout_logfile_maxbytes=0 ;标准日志大小
|