Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

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