OnlineJudge/dockerfiles/oj_web_server/gunicorn.conf
2016-01-08 23:32:30 +08:00

12 lines
274 B
Plaintext

[program:gunicorn]
command=gunicorn oj.wsgi:application -b 0.0.0.0:8080 --reload
directory=/code/
user=nobody
numprocs=1
stdout_logfile=/code/log/gunicorn.log
stderr_logfile=/code/log/gunicorn.log
autostart=true
autorestart=true
startsecs=5
stopwaitsecs = 6
killasgroup=true