mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2025-01-04 06:18:58 +00:00
7 lines
280 B
Bash
7 lines
280 B
Bash
#!/usr/bin/env bash
|
|
chown compiler:compiler /spj
|
|
echo 0 > /tmp/counter
|
|
core=$(grep --count ^processor /proc/cpuinfo)
|
|
n=$(($core*4))
|
|
chmod 400 /token.txt /tmp/counter
|
|
gunicorn --workers $n --threads $n --error-logfile /log/gunicorn.log --time 600 --bind 0.0.0.0:8080 server:wsgiapp |