Remove --threads (#268)

Should fix #266
This commit is contained in:
Kevin Chung
2017-06-03 17:43:46 -04:00
committed by GitHub
parent 736a0e1dc3
commit a833e8514c

View File

@@ -12,4 +12,4 @@ echo "Ready"
sleep 1; sleep 1;
echo "Starting CTFd" echo "Starting CTFd"
gunicorn --bind 0.0.0.0:8000 -w 1 --threads 8 'CTFd:create_app()' --access-logfile '/opt/CTFd/CTFd/logs/access.log' --error-logfile '/opt/CTFd/CTFd/logs/error.log' gunicorn --bind 0.0.0.0:8000 -w 1 'CTFd:create_app()' --access-logfile '/opt/CTFd/CTFd/logs/access.log' --error-logfile '/opt/CTFd/CTFd/logs/error.log'