首页 > 运 维 > nginx > 正文

nginx允许列出文件目录
2016-05-12 12:36:51   来源:   评论:0 点击: 收藏

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;
        #error_page   404   /404.html;
        include enable-php.conf;
    .........
  }

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

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