Sending a 'large' POST request to gUnicorn will cause it to freeze and eventually timeout. This is both on my production server and development server (both running Ubuntu 20.04). It just freezes before returning
[CRITICAL] WORKER TIMEOUT (pid:10000)
Django's default dev server works without issues.
My WSGI file:
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
'djangoProject.settings')
application = get_wsgi_application()