美文网首页
2019-05-14 nginx的autoindex模块

2019-05-14 nginx的autoindex模块

作者: 张大志的博客 | 来源:发表于2019-05-14 17:26 被阅读0次
    server {
              listen 80;
              server_name autoindex.aaa.com;
              location / {
                  root /usr/share/nginx/html/;
                  autoindex on;
                  index a.html;  #指明index文件,默认为index.html,如果此文件不存在,访问域名时会显示目录结构
                  autoindex_exact_size off;
                  autoindex_format json;  #指明返回的为json格式,也可以是html格式
                  autoindex_localtime on;
    }
    }
    

    相关文章

      网友评论

          本文标题:2019-05-14 nginx的autoindex模块

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