25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

supervisord.conf 334 B

123456789101112131415
  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. redirect_stderr=true
  11. stdout_logfile=/dev/stdout
  12. stdout_logfile_maxbytes=0
  13. stderr_logfile=/dev/stderr
  14. stderr_logfile_maxbytes=0