美文网首页
nginx 打开目录预览功能

nginx 打开目录预览功能

作者: rochestor | 来源:发表于2018-02-22 22:23 被阅读50次

    三个重要的指令

    autoindex on;  在server或location 段里添加上autoindex on;来启用目录流量
    
    autoindex_exact_size off;
    默认为on,显示出文件的确切大小,单位是bytes。
    改为off后,显示出文件的大概大小,单位是kB或者MB或者GB
    
    autoindex_localtime on;
    默认为off,显示的文件时间为GMT时间。
    改为on后,显示的文件时间为文件的服务器时间
    
    

    demo

    在server段添加

    location / {
    autoindex on;
    autoindex_localtime on; #之类的参数写这里
    }
    

    单独目录开启目录流量

    location /down/ {
    autoindex on;
    }
    

    虚拟目录开启目录流量

    location /down/ {
    alias /home/wwwroot/lnmp/test/;
    autoindex on;
    }
    

    相关文章

      网友评论

          本文标题:nginx 打开目录预览功能

          本文链接:https://www.haomeiwen.com/subject/odftxftx.html