mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-29 08:32:08 +00:00
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
[supervisord]
|
|
logfile=/app/data/log/supervisord.log
|
|
logfile_maxbytes=10MB
|
|
logfile_backups=10
|
|
loglevel=info
|
|
pidfile=/tmp/supervisord.pid
|
|
nodaemon=true
|
|
childlogdir=/app/data/log/
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///tmp/supervisor.sock
|
|
|
|
[program:nginx]
|
|
command=nginx -c /app/deploy/nginx/nginx.conf
|
|
directory=/app/
|
|
stdout_logfile=/app/data/log/nginx.log
|
|
stderr_logfile=/app/data/log/nginx.log
|
|
autostart=true
|
|
autorestart=true
|
|
startsecs=5
|
|
stopwaitsecs = 5
|
|
killasgroup=true
|
|
|
|
[program:gunicorn]
|
|
command=sh -c "gunicorn oj.wsgi --user nobody -b 127.0.0.1:8080 --reload -w `grep -c ^processor /proc/cpuinfo`"
|
|
directory=/app/
|
|
user=nobody
|
|
stdout_logfile=/app/data/log/gunicorn.log
|
|
stderr_logfile=/app/data/log/gunicorn.log
|
|
autostart=true
|
|
autorestart=true
|
|
startsecs=5
|
|
stopwaitsecs = 5
|
|
killasgroup=true
|
|
|
|
[program:celery]
|
|
command=celery -A oj worker -l warning
|
|
directory=/app/
|
|
user=nobody
|
|
stdout_logfile=/app/data/log/celery.log
|
|
stderr_logfile=/app/data/log/celery.log
|
|
autostart=true
|
|
autorestart=true
|
|
startsecs=5
|
|
stopwaitsecs = 5
|
|
killasgroup=true
|