nginx 긴 연결 요청 처리, gateway timeout 오류 해결

645 단어
console 오류 보고: gateway timeout, 504 오류 보고
1. 시스템 에 긴 연결 이 있 을 때
nginx 설정 파일 에서 기본 시간 초과 연결 은 60s 입 니 다. 일부 특수 한 업무 요청 에 60s 가 넘 는 데이터 요청 이 있 을 수 있 습 니 다. 이 때 업무 요 구 를 만족 시 키 기 위해 설정 파일 을 수정 해 야 합 니 다.
   nginx  :
  nginx : start nginx
  nginx(    ) : nginx -s stop
  nginx(    ) :nginx -s quit
         : nginx -s reload
    nginx         (  80  ) : netstat -an|find "0:80"
    nginx   : taskkill /F /IM nginx.exe > nul
        location  :
location / {
            root   dist;
            index  index.html index.htm;
            proxy_read_timeout 150; //         
        }

좋은 웹페이지 즐겨찾기