rDrama/supervisord.conf

12 lines
397 B
Plaintext
Raw Normal View History

2022-05-04 23:09:46 +00:00
[supervisord]
nodaemon=true
pidfile=/tmp/supervisord.pid
logfile=/tmp/supervisord.log
[program:service]
directory=/service
2022-08-26 15:37:06 +00:00
command=gunicorn files.__main__:app -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 --reload -b 0.0.0.0:80 --max-requests 1000 --max-requests-jitter 500
2022-05-04 23:09:46 +00:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
2021-11-02 22:35:08 +00:00
stderr_logfile_maxbytes=0