nginx列出目录
列出目录
使用自带的autoindex
autoindex on; autoindex_exact_size off; 默认为on,显示出文件的确切大小,单位是bytes。 改为off后,显示出文件的大概大小,单位是kB或者MB或者GB charset utf-8 如果列出的中文目录乱码,尝试设置编码
使用fancyindex索引
git clone https://github.com/aperezdc/ngx-fancyindex #源码编译安装配置,注意路径 ./configure --add-module=../ngx-fancyindex # 添加fancyindex模块 #配置 location / { root /home/data; fancyindex on; # 使用fancyindex fancyindex_exact_size off; # 不显示精确大小fancyindex_footer "fancy_footer.html"; # 指定页脚页面
}