首页 > Web > nginx > 正文

nginx允许列出文件目录 nginx列目录
2016-05-12 12:36:51 点击:

nginx 列出文件目录:代码样例:location upload output { root home s www sostat; autoindex on; autoindex_exact_size on; autoindex_localtime on;}
nginx 列出文件目录:
代码样例:



请参考以下:
server
    {   
        listen 80 ;
        server_name www.123.com ;
        index index.html index.htm index.php;
        root  /home/wwwroot/123;
        autoindex on;
        autoindex_exact_size on;
        autoindex_localtime on;
        
    .........
  }
列目录功能代码,加入以下即可:
        autoindex on;
        autoindex_exact_size on;
        autoindex_localtime on;


相关热词搜索:文件 目录 nginx 列目录

上一篇:nginx服务器重定向301的正确写法
下一篇:使用logrotate对nginx做日志轮询