nginx+fancy配置漂亮的索引目录

系统服务   nginx列目录  
默认的索引功能
  • server段加入
server {

     此处省略......
     autoindex on;               #开启
     autoindex_exact_size off;   #显示文件大小
     autoindex_localtime on;     #开启显示本地时间
}
效果如下


nginx+fancy配置索引目录
  • 环境
    CentOS 6.5 64bit
    nginx 1.8
    NgxFancyIndex

  • 下载安装nginx+fancy

wget http://ftp.exim.org/pub/pcre/pcre-8.37.tar.gz  
tar zxf pcre-8.37.tar.gz && cd pcre-8.37  
./configure --prefix=/usr/local/pcre
make && make install

git clone https://github.com/aperezdc/ngx-fancyindex

useradd www  
wget http://nginx.org/download/nginx-1.8.0.tar.gz  
tar zxf nginx-1.8.0.tar.gz  
cd nginx-1.8.0  
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=../pcre-8.37 --with-http_realip_module --with-http_image_filter_module  --add-module=../ngx-fancyindex
make -j2 && make install  
  • 配置fancy
server {  
 .....
 location / {
                fancyindex on;               #开启fancy索引
                fancyindex_exact_size on;    #不使用精确的大小,使用四舍五入,如果开启的话,单位为字节
                fancyindex_localtime on;     #使用本地时间
 }
 .....
}
  • 效果如下

详细介绍请看==> 运维生存时间