nignx 显示文件目录

来源:互联网 发布:linux 改sftp 22端口 编辑:程序博客网 时间:2024/06/07 06:36


worker_processes  1;


events {
    worker_connections  1024;
}


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


    sendfile        on;


    server_tokens off;


    keepalive_timeout  65;


    #gzip  on;


    server {
        listen       80;
        server_name  www.baid.com;


        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {
   root   e:/55;
            index  index.html index.htm;
autoindex on;  
autoindex_exact_size on;  
autoindex_localtime on; 
  #         proxy_pass http://localhost:8080/test/; 
        }


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


}
原创粉丝点击