[Answered ]-Gunicorn worker fails to boot

2👍

Fixed it.

gunicorn core.wsgi.py -b 0.0.0.0:8080

was throwing as i added given the filename instead of module. Corrected with

gunicorn core.wsgi -b 0.0.0.0:8080

Leave a comment