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.
|
- [supervisord]
- nodaemon=true
- logfile=/dev/null
- pidfile=/var/run/supervisord.pid
-
- [program:gunicorn]
- directory=/backend
- command=gunicorn lesspass.wsgi:application -w 2 -b :8000
- autostart=true
- autorestart=true
- redirect_stderr=true
- stdout_logfile=/dev/stdout
- stdout_logfile_maxbytes=0
- stderr_logfile=/dev/stderr
- stderr_logfile_maxbytes=0
|