OnlineJudge/dockerfiles/oj_web_server/gunicorn.conf

16 lines
282 B
Plaintext
Raw Normal View History

2015-09-17 07:21:08 +00:00
[program:gunicorn]
command=gunicorn oj.wsgi:application -b 0.0.0.0:8080 --reload
2015-09-17 07:41:44 +00:00
directory=/code/qduoj/
2015-09-17 07:21:08 +00:00
user=root
numprocs=1
2015-09-17 07:41:44 +00:00
stdout_logfile=/code/log/gunicorn.log
stderr_logfile=/code/log/gunicorn.log
2015-09-17 07:21:08 +00:00
autostart=true
autorestart=true
startsecs=5
stopwaitsecs = 6
killasgroup=true