Howtos/Autoindex on nginx: Difference between revisions

From creative crowd wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 18: Line 18:


https://nginx-extras.getpagespeed.com/modules/fancyindex/
https://nginx-extras.getpagespeed.com/modules/fancyindex/
https://installati.one/install-libnginx-mod-http-fancyindex-debian-12/

Revision as of 14:49, 14 February 2025

You can activate autoindex on the main server folder (/var/www/html/) and/or home folders (~/public_html/).

autoindex

/var/www/html/

~/public_html/

location ~ ^/~(.+?)(/.*)?$ {
    alias /home/$1/public_html$2;
    index index.php index.html index.htm;
    autoindex on; # this feature automatically lists all files in the public_html folder!
}

fancyindex !

https://nginx-extras.getpagespeed.com/modules/fancyindex/

https://installati.one/install-libnginx-mod-http-fancyindex-debian-12/