Author
Updates
Views
Downloads
Type
=============================
ERROR DEBUG
=============================
Timestamp: Random Occurrence
Application/Module: Gecom
Environment:Production
Error Type: Warning
=============================
ERROR DETAILS
=============================
Error Message: *10937 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/09/0000000095 while reading upstream
Error Source/Location: static files/ Browser
=============================
CONTEXT INFORMATION
=============================
Operation/Function: Nginx is serving as a reverse proxy, forwarding the client's request to an upstream server
HTTP Request :GET /static/fonts/fontawesome6/webfonts/fa-solid-900.woff2 HTTP/1.1
=============================
SYSTEM INFORMATION
=============================
Operating System: Independent
Programming Language: Independent
Framework/Libraries: Independent
Adding proxy_buffering off;
to Django block since we are using white noise for static file serving.
This might solve the issue of file size, but if this issue is due to transfer between Django and nginx, we might have to look into web app.
Solution
turning proxy buffering solved the issue, but there are still load time issues.