Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

15 строки
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