The following Django HttpResponse doesn't show any text in the browser and I don't know why:
HttpResponse(u'Bad Request - Text does not show.', status=400, content_type='text/plain')
It works perfectly on my localhost, but the text message is not found anywhere when running the same code under NGINX in production.
Here's a production example URL: http://pixabay.com/get/abc.svg
Any ideas?