Fancy indexes module for the Nginx web server

本文最后更新于:2024年8月9日 晚上

---

Fancy indexes module for the Nginx web server

https://github.com/aperezdc/ngx-fancyindex

Installation and configuration

Installation
Configuration
1
2
3
4
[root@bo ~]# nginx -V
nginx version: nginx/1.22.0
...
--add-module=ngx-fancyindex

More usage of directives:

https://github.com/aperezdc/ngx-fancyindex#directives

1
2
3
4
5
6
7
8
9
10
11
12
server {
server_name repo.bo.ms;
listen 80;
location / {
root /data/repo/;
autoindex on;
fancyindex on;
fancyindex_exact_size off;
create_full_put_path on;
client_max_body_size 0M;
}
}

image-20230131154703933


Fancy indexes module for the Nginx web server
https://git.msft.vip/2023/01/31-Fancy-indexes-module-for-the-Nginx-web-server/
作者
Jas0n0ss
发布于
2023年1月31日
更新于
2024年8月9日
许可协议