您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

supervisord.conf 313 B

1234567891011121314
  1. [supervisord]
  2. nodaemon=true
  3. logfile=/dev/null
  4. pidfile=/var/run/supervisord.pid
  5. [program:gunicorn]
  6. directory=/backend
  7. command=gunicorn lesspass.wsgi:application -w 2 -b :8000
  8. autostart=true
  9. autorestart=true
  10. stdout_logfile=/dev/stdout
  11. stdout_logfile_maxbytes=0
  12. stderr_logfile=/dev/stderr
  13. stderr_logfile_maxbytes=0