nginx允许列出文件目录 nginx列目录

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;

发表评论

您的邮箱地址不会被公开。