nginx索引静态文件

时间:2023-01-30 10:56:20

前言

针对nas服务器文件下载或者需要索引一些静态二进制文件的地方,可以利用nginx自带的索引文件功能实现。

root /var/www/html; #索引目录
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;

nginx索引静态文件


样式感觉不好看,nginx有一些module可以支持好看的样式。

针对deb系的os可以无需重新编译安装nginx来启用module,直接:

sudo apt install libnginx-mod-http-fancyindex

然后配置文件:

root /var/www/html; #索引目录
fancyindex on; # 开启索引功能
fancyindex_exact_size off; # 关闭文件大小
fancyindex_localtime on; #开启时间显示
fancyindex_name_length 255; #最大名字长度

nginx索引静态文件

作者:​​Hello_wshuo​​