当前位置: 代码迷 >> Web前端 >> Nginx打开索引浏览功能
  详细解决方案

Nginx打开索引浏览功能

热度:136   发布时间:2012-08-26 16:48:06.0
Nginx打开目录浏览功能
引用
http://blog.licess.org/nginx-autoindex/


Nginx默认是不允许列出整个目录的。如需此功能,
打开nginx.conf文件,在location server 或 http段中加入
autoindex on;

另外两个参数最好也加上去:
autoindex_exact_size off;

默认为on,显示出文件的确切大小,单位是bytes。
改为off后,显示出文件的大概大小,单位是kB或者MB或者GB
autoindex_localtime on;

默认为off,显示的文件时间为GMT时间。
改为on后,显示的文件时间为文件的服务器时间
location /images {
                root   /var/www/nginx-default/ibugaocn;
                autoindex on;
        }


详细参照:http://wiki.nginx.org/NginxChsHttpAutoindexModule


例子
    server {
        listen 81;
        root "/tmp/";
        autoindex on;
        autoindex_exact_size off;
        autoindex_localtime on;
    }