nginx terminates connection after 65k bytes
- by David Wolever
I've got nginx configured as a front-end to a Python application running under gunicorn, but nginx is terminating connections after about 65k of data have been sent.
For example, I've got a view which looks like this:
def debug_big_file(request):
return HttpResponse("x" * 500000)
But when I access that URL through nginx, I only get 65283…