Chinaunix

标题: nginx显式目录列表 [打印本页]

作者: lzq467826892    时间: 2011-12-20 09:48
标题: nginx显式目录列表
# cat /usr/local/nginx/conf/nginx.conf

#user  nobody;
worker_processes  1;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    keepalive_timeout  65;
     #添加以下3条
    autoindex on;    
    autoindex_exact_size off;
    autoindex_localtime on;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        location / {
            root   /file_server/targtime/;
            index  index.html index.htm;
        }
        
error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}

Index of /OperateSystem/Linux/


../
CentOS-5.5-i386-bin-DVD.iso                        03-Apr-2011 09:26      4G
Fedora-12-i386-DVD.iso                             19-Jan-2011 06:52      3G
RHEL-5.3.iso                                       09-Apr-2011 10:09      3G
TLF-SOFT-RedHat.Enterprise.Linux.5.Update.1-XiS..> 09-Apr-2011 10:14      3G
lfslivecd-x86-6.3-r2145.iso                        23-Nov-2010 22:37    633M
openSUSE-11.0-GNOME-LiveCD-i386.iso                04-Apr-2011 02:48    664M
rhel-server-5.4-i386-dvd.iso                       22-Feb-2011 07:21      3G
ubuntu-10.10-desktop-i386.iso                      10-Nov-2010 06:09    693M
ubuntu-10.10-server-i386.iso                       30-Nov-2010 04:46    627M





欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2