Nginx目录文件列表显示

开启Nginx目录文件列表功能:
确保nginx中ngx_http_autoindex_module安装;
此模块只在ngx_http_index_module模块未找到索引文件时发出请求;

打开nginx.conf文件,在location server 或 http段中加入

  autoindex on;  //开启目录文件列表
  autoindex_exact_size off;  //人性化方式显示文件大小否则以byte显示
  autoindex_localtime on;  //按服务器时间显示,否则以gmt时间显示
  
  // 根据情况选择
  charset utf-8,gbk;  //避免中文乱码
  add_header Content-Disposition attachment;  //请求文件是下载而不是显示内容(默认)
posted @ 2021-04-25 11:27  Beavan  阅读(678)  评论(0编辑  收藏  举报