Django(uwsgi) + nginx가 컬 요청 시 중단됨

Django(uwsgi) + nginx가 컬 요청 시 중단됨

컬을 사용한 요청이 중단되는 문제를 디버깅하려고 합니다. 웹 브라우저를 통해 웹 사이트를 열면 웹 사이트가 제대로 렌더링됩니다. 로그 파일에서도 의심스러운 점을 찾을 수 없습니다.

로깅을 활성화했지만 error_log info;nginx 로그 파일에 아무것도 표시되지 않습니다.

다음은 요청 예시입니다.

$ curl -v -o test.txt https://www.happyworld.bg
* Rebuilt URL to: https://www.happyworld.bg/
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 172.104.135.164...
* Connected to www.happyworld.bg (172.104.135.164) port 443 (#0)
* found 148 certificates in /etc/ssl/certs/ca-certificates.crt
* found 604 certificates in /etc/ssl/certs
* ALPN, offering http/1.1
* SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

.... 인증서 정보 ... * ALPN, http/1.1 사용이 허용된 서버

GET / HTTP/1.1 호스트: www.happyworld.bg 사용자 에이전트: 컬/7.47.0 수락:/

  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0< HTTP/1.1 200 OK
< Server: nginx/1.13.6
< Date: Thu, 30 Aug 2018 14:18:56 GMT
< Content-Type: text/html; charset=utf-8
< Content-Length: 32484
< Connection: keep-alive
< Vary: Cookie
< X-Frame-Options: SAMEORIGIN
< Cache-Control: max-age=600
< Expires: Thu, 30 Aug 2018 14:28:56 GMT
< Strict-Transport-Security: max-age=63072000; includeSubdomains
< X-Frame-Options: DENY
< X-Content-Type-Options: nosniff
< 
{ [15988 bytes data]
 74 32484   74 24037    0     0   2563      0  0:00:12  0:00:09  0:00:03 

그리고 얼마 후 나는 다음과 같은 결과를 얻습니다.

* Closing connection 0
curl: (18) transfer closed with 8447 bytes remaining to read

애플리케이션 로그 파일에서는 다음만 볼 수 있습니다.

[pid: 12406|app: 0|req: 1/1] ........... () {42 vars in 486 bytes} [Thu Aug 30 14:15:03 2018] GET / => generated 24037 bytes in 85 msecs (HTTP/1.1 200) 6 headers in 193 bytes (1 switches on core 0)

다음은 가상 블록 구성의 예입니다.

upstream wagtail { server 127.0.0.1:3002; }

location @CMS {
  include /etc/nginx/uwsgi_params;
  uwsgi_pass wagtail;
  uwsgi_param Host $host;
  uwsgi_param X-Real-IP $remote_addr;
  uwsgi_param X-Forwarded-For $proxy_add_x_forwarded_for;
  uwsgi_param X-Forwarded-Proto $http_x_forwarded_proto;
}

원인이 무엇인지, 아니면 뭔가 빠졌는지 단서가 있습니까?

관련 정보