반응형
16289#16289: *1 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 111.11.11.110, server: test.co.kr, request: “POST /signup/auth/ HTTP/1.1”, upstream: “http://unix:/tmp/gunicorn.sock:/signup/auth/“, host: “test.co.kr”, referrer: “https://test.co.kr/signup/”
요청데이터를 읽는 과정에서 프록시 버퍼 문제가 생길 수 있다.
응답이 구성된 메모리 버퍼에 맞지 않기 때문에 디스크에 버퍼링되었음을 나타낸다.
■ 해결방법
1. cd /etc/nginx/ 내부에 nginx.conf 를 열어보자.
2. vi nginx.conf
3. http 설정 내부에 proxy_buffers 16 16k; 를 작성해주면 된다.
proxy_buffers 버퍼 수 버퍼크기 이므로, 필요한 만큼 설정하면 된다.
반응형
'리눅스' 카테고리의 다른 글
[ AWS LightSail ] Problem binding to port 80: Could not bind to IPv4 or IPv6. (2) | 2023.04.12 |
---|---|
[Ubuntu] Oracle Instant Client 19_8 설치 및 Django cx_Oracle 적용 (0) | 2023.03.09 |
댓글