当前位置: > Linux服务器 > nginx >

Nginx服务器如何启用目录浏览功能

时间:2015-01-21 23:10来源:linux.it.net.cn 作者:IT

你还记得apache下打开目录浏览功能的参数吗



    Options FollowSymLinks
    AllowOverride None
    Options Indexes           #就加这句就可以了,目录按需要选择

#就加这句就可以了,目录按需要选择

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

autoindex on;
另外两个参数最好也加上去:

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

autoindex_localtime on;
默认为off,显示的文件时间为GMT时间。
注意:改为on后,显示的文件时间为文件的服务器时间

server{
listen 80;
servername www.A.com;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
root /home/www/;
}
详细参照:http://wiki.nginx.org/NginxChsHttpAutoindexModule

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容