Fancy indexes module for the Nginx web server

Linux

---

Fancy indexes module for the Nginx web server

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

Installation and configuration

Installation
Configuration
[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

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