Nginx 가속: gzip 오픈

1251 단어 Nginx 설정
nginx 는 고성능 입 니 다. Web 서버 는 블 로그 의 응답 속 도 를 높이 기 위해 nginx 의 gzip 와 캐 시 를 설정 하 는 데 착안 하여 gzip 과 캐 시 를 켜 면 대역 폭 소 모 를 크게 줄 일 수 있 습 니 다.
gzip 열기
http {
    ....
    .....
    #   gzip
    gzip on;
    
    #   gzip       ,             
    gzip_min_length 1k;
    
    # gzip     ,1-10,         ,    CPU  ,        
    gzip_comp_level 2;
    
    #          。javascript     。        mime.types      。
    #   jpg,jpeg,png        ,        cpu  ,     
    gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/gif;
    
    #    http header   Vary: Accept-Encoding,    
    gzip_vary on;
    
    #    (  1.1,     squid2.5   1.0)
    gzip_http_version 1.0;
    
    #   IE 6 gzip
    gzip_disable "MSIE [1-6]\.";

    #                   ,  4 16K       (one memory page)   16K   (          16K),  4      
    gzip_buffers    4 16k;
    
    #Nginx           ,any –            
    gzip_proxied any;
    ....
}
location /hello/ {
        gzip on;
        proxy_pass http://localhost:8080/;
        proxy_pass_header Set-Cookie;
        proxy_cookie_path / "/; httponly; secure; SameSite=NONE";
}

좋은 웹페이지 즐겨찾기