LNMP Nginx 499 문제 제3자 반전 이상

nginx 생산 프로필 참고 로 http 499 문 제 를 해결 하고 은 련 리 셋 이상 을 해결 합 니 다. 매번 요청 이 첫 번 째 실패, 두 번 째 성공, 매번 3 분 을 기 다 려 야 합 니 다. 주요 추가 매개 변 수 는 buffer \ cache 최적화 이 고 시간 초과 도 있 습 니 다.
문제 조사 절차:
1. DNS [서버 로 컬 DNS, 랜 bindDNS, CDN 분석, 도 메 인 이름 맵, NAT 등] 2 를 보고 nginx 연결 상태, TCP 11 가지 상 태 를 확인 합 니 다. 주동 적 으로 연결 을 버 리 는 것 이 있 는 지 3. nginx 설정 에 최적화 항목 이 있 는 지 확인 합 니 다. 특히 timeout, ignore 에 주의 하 십시오.client_abort, fastcgi 포트 점프 등등
##--------------------------------------------------------------------------
user  www www;
worker_processes 4;
error_log  /home/logs/nginx_error.log notice;
pid        /var/run/nginx.pid;
worker_rlimit_nofile 6553;

##--------------------------------------------------------------------------
events {
        use epoll;
        worker_connections 5120;
        multi_accept on;
    }
##--------------------------------------------------------------------------
http {
        include       mime.types;
#include       secure/limit_zone.conf;
        default_type  application/octet-stream;

        server_tokens off;
        server_names_hash_bucket_size 128;
        client_header_buffer_size 512k;
        client_body_buffer_size 1024k;
        large_client_header_buffers 4 32k;
        client_max_body_size 50m;
        sendfile   on;
        tcp_nopush on;
        keepalive_timeout 300;
        tcp_nodelay on;
##--------------------------------------------------------------------------
        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        fastcgi_ignore_client_abort on;
        fastcgi_buffer_size 512k;
        fastcgi_buffers 6 512k;
        fastcgi_busy_buffers_size 512k;
        fastcgi_temp_file_write_size 512k;
        fastcgi_next_upstream error timeout invalid_header http_500 http_503 http_403;
##--------------------------------------------------------------------------
        gzip on;
        gzip_min_length  1k;
        gzip_buffers     4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 4;
        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
       gzip_disable   "MSIE [1-6]\.";
       proxy_connect_timeout    3;
    proxy_read_timeout       60;
    proxy_send_timeout       60;
###--------------------------------------------------------------------------
        log_format main '$remote_addr - $remote_user [$time_local] "$request"'
             '$status $body_bytes_sent "$http_referer"'
             '"$http_user_agent" "$http_x_forwarded_for"';
##--------------------------------------------------------------------------
upstream myfastcgi {
                ip_hash;
                server 192.168.0.32:9000  weight=1;
}
##--------------------------------------------------------------------------
include       vhost/*.conf;
    log_format json '{ "@timestamp": "$time_local", '
         '"@fields": { '
         '"remote_addr": "$remote_addr", '
         '"remote_user": "$remote_user", '
         '"body_bytes_sent": "$body_bytes_sent", '
         '"request_time": "$request_time", '
         '"status": "$status", '
         '"request": "$request", '
         '"request_method": "$request_method", '
         '"http_referrer": "$http_referer", '
         '"body_bytes_sent":"$body_bytes_sent", '
         '"http_x_forwarded_for": "$http_x_forwarded_for", '
         '"http_user_agent": "$http_user_agent" } }';
    access_log  /var/log/nginx/access_json.log  json;
}
##--------------------------------------------------------------------------

좋은 웹페이지 즐겨찾기