stermux.conf 1.6 KB

12345678910111213141516171819202122232425262728
  1. [inet_http_server] ; inet (TCP) server disabled by default
  2. port=*:9001 ; (ip_address:port specifier, *:port for all iface)
  3. username=user ; (default is no username (open server))
  4. password=123 ; (default is no password (open server))
  5. [supervisord]
  6. ;nodaemon=true
  7. logfile=logs/supervisord.log
  8. logfile_maxbytes=50MB
  9. [supervisorctl]
  10. [program:flask_dr_py]
  11. # command=gunicorn -w 5 --threads=2 -b 0.0.0.0:5705 app:app ;被监控的进程路径
  12. command=gunicorn -w 5 --worker-class=sync --preload -b 0.0.0.0:5705 app:app ;被监控的进程路径
  13. # command=gunicorn --worker-class=gevent --worker-connections=1000 -w 5 app:app ;被监控的进程路径
  14. ;directory=/sdcard/Download/pywork/dr_py ; 执行前要不要先cd到目录去,一般不用
  15. user=u0_a414 ;执行者角色
  16. priority=1 ;数字越高,优先级越高
  17. ;numprocs=1 ; 启动几个进程
  18. startsecs=0
  19. autostart=true ; 随着supervisord的启动而启动
  20. autorestart=true ; 自动重启。。当然要选上了
  21. startretries=10 ; 启动失败时的最多重试次数
  22. exitcodes=0 ; 正常退出代码(是说退出代码是这个时就不再重启了吗?待确定)
  23. stopsignal=KILL ; 用来杀死进程的信号
  24. stopwaitsecs=10 ; 发送SIGKILL前的等待时间
  25. redirect_stderr=true ; 重定向stderr到stdout
  26. ;stopasgroup=true ;用于停止进程组,即停止所有通过“uwsgi.ini”配置启动的进程。
  27. ;killasgroup=true ;用于关闭进程组,即关闭所有通过“uwsgi.ini”配置启动的进程。