gunicorn.errors.HaltServer: django

run guncorn with –preload can see the error log, like this

gunicorn app:application --preload -b 0.0.0.0:5000 

This will usually give you a more detailed error message.

Leave a Comment