You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 rivejä
313 B

  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