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.    }