Skip to content

Commit

Permalink
changed gunicorn timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 authored Feb 2, 2022
1 parent cba556d commit d46cc29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ fi
if [ -n "$DJANGO_SUPERUSER_USERNAME" ] && [ -n "$DJANGO_SUPERUSER_PASSWORD" ] ; then
(echo "creating superuser ${DJANGO_SUPERUSER_USERNAME}" && python manage.py createsuperuser --no-input --noinput --email 'blank@email.com' --settings=vocabseditor.settings.docker)
fi
gunicorn vocabseditor.wsgi_docker --user www-data --bind 0.0.0.0:8010 --workers 3 & nginx -g "daemon off;"
gunicorn vocabseditor.wsgi_docker --user www-data --bind 0.0.0.0:8010 --workers 3 --timeout 600 & nginx -g "daemon off;"

0 comments on commit d46cc29

Please sign in to comment.