nginx 관련 모듈 기능 수집 (지속 업데이트)


  
  
  
  
  1. 1、 nginx apache ?  
  2.         location / {  
  3.             root   /var/www/w1;  
  4.             index  index.html index.htm;  
  5.             autoindex on;        # index , index ,  
  6.             autoindex_exact_size on   # nginx  
  7.         }  
  8.  
  9. 2、 nginx gzip ?  
  10.     gzip  on;    gzip  
  11.     gzip_buffers 32 4k;   , GZIP , nginx  
  12.     gzip_comp_level 1;   1  
  13.     gzip_min_length 1024;  1K  
  14.     gzip_types text/html text/css application/xml;     
  15.  
  16. *) Change: the default "gzip_buffers" directive values have been
    changed to 32 4k or 16 8k from 4 4k/8k.
  1. 3、 nginx  
  2.     :  
  3.    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$  
  4.    {  
  5.     expires 30d;  
  6.     }  
  7.  
  8.    location ~.*\.(js|css)?$  
  9.    {  
  10.     expires 1h;  
  11.    } 

좋은 웹페이지 즐겨찾기