rDrama/supervisord.conf

13 lines
355 B
Plaintext
Raw Normal View History

2021-07-21 01:12:26 +00:00
[supervisord]
nodaemon=true
pidfile=/tmp/supervisord.pid
logfile=/tmp/supervisord.log
2021-08-04 16:21:10 +00:00
[program:service]
directory=/service
2021-09-02 19:29:43 +00:00
command=gunicorn files.__main__:app -k gevent -w 2 --max-requests 10000 --max-requests-jitter 500 --reload --bind 0.0.0.0:80
2021-07-21 01:12:26 +00:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
2021-09-02 19:29:43 +00:00
stderr_logfile_maxbytes=0