nginx 오류 정보 클 라 이언 트 가 너무 큰 몸 체 를 보 내 려 는 해결: 1331696 바이트

2639 단어
nginx 오류 정보 클 라 이언 트 가 너무 큰 몸 체 를 보 내 려 는 해결: 1331696 바이트
1, nginx 배경 error 로그 오류

2016/02/05 16:23:56 [error] 12024#0: *441106971 connect() failed (111: Connection refused) while
 connecting to upstream, client: 113.214.1.10, server: localhost, request: 
"GET /h5teb/ugcH5/index.htm?source=android&mall=8&TGC=911FDD2F99B84D528F0A7EE71780A943
 HTTP/1.1", upstream: "http://113.214.1.23:8000/h5teb
/ugcH5/index.htm?source=android&mall=8&TGC=911FDD2F99B84D528F0A7EE71780A943",
 host: "www.testcrm.com"
2016/02/05 16:48:14 [error] 
12013#0: *441119082 client intended to send too 
large body: 1331696 bytes, client: 113.214.1.10, server: localhost, 
request: "POST /h5teb/complaints/save.htm HTTP/1.1", host: "www.testcrm.com",
 referrer: "http://www.testcrm.com/h5teb/complaints/index.htm"

2. 웹 프로젝트 에 파일 업로드 제한 추가
웹 프로젝트 는 http {뒤에 100 m 제한 상한 선 을 추가 하 는 단독 nginx 를 배 치 했 습 니 다.

client_max_body_size 100m;
[nginx@wgq_idc_web_1_21 logs]$ vim /usr/local/nginx/conf/nginx.conf
http {
  include    mime.types;

  server_tokens off;

  sendfile    on;
  tcp_nopush on;
  tcp_nodelay on;

  keepalive_timeout 65;

  log_format main '$proxy_add_x_forwarded_for $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for" '
           'upstream: $upstream_addr';
  access_log off;

    client_max_body_size 100m;


3. 정적 자원 에 파일 업로드 제한 추가
정적 자원 은 하나의 nginx 를 배치 하여 퍼 가기 location 에서 100 m 의 상한 선 을 설정 합 니 다. client max body size 100 m;

[fastdfs@wgq_test_crm~]$ vim /usr/local/nginx/conf/nginx.conf
    location /group1/M00 {
      root  /data/fastdfs/data;
      include gzip.conf;
      ngx_fastdfs_module;
      client_max_body_size 100m;
      expires 12h;
    }

    location /group2/M00 {
      root  /data/fastdfs_group2/data;
      ngx_fastdfs_module;
      client_max_body_size 100m;
      #access_log /usr/local/nginx/logs/group2_pic.log main;
      expires 12h;
      include gzip.conf;
    }


4. 그리고 nginx 서버 2 세트 를 다시 불 러 옵 니 다. 문제 가 해결 되 었 으 니 더 이상 잘못 보고 하지 않 습 니 다.
읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다. 본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기