/..

#CONTENT

#TOP

supervisord.conf
TEXT
[supervisord]
user=root
nodaemon=true
logfile=/dev/null
logfile_maxbytes=0
pidfile=/run/supervisord.pid

[program:flask]
user=www
command=gunicorn --workers 5 --threads 8 --preload --timeout 0 run:app -b :80
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0