rDrama/supervisord.conf

13 lines
362 B
Plaintext
Raw Normal View History

2021-10-15 14:08:27 +00:00
[supervisord]
nodaemon=true
pidfile=/tmp/supervisord.pid
logfile=/tmp/supervisord.log
[program:service]
directory=/service
2021-10-27 01:16:26 +00:00
command=gunicorn files.__main__:app -k gevent -w 1 --reload -b 0.0.0.0:80 --max-requests 1000 --max-requests-jitter 500
2021-10-15 14:08:27 +00:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0