Index Of Files Better ✓ 〈Original〉

Make directory listings (the typical web server "Index of /" pages) more usable, secure, and maintainable for end users and administrators.

Even if your index is pretty, you might not want Google to see it. Add this to your root: index of files better

<meta name="robots" content="noindex, nofollow">

Use the add_before_body and add_after_body directives: Make directory listings (the typical web server "Index

location /files 
    autoindex on;
    autoindex_exact_size off;
    autoindex_localtime on;
    add_before_body /templates/header.html;
    add_after_body /templates/footer.html;

Result: A clean, dashboard-like interface instead of a 1990s text dump. Result: A clean, dashboard-like interface instead of a

docker run -v /path/to/your/files:/srv -p 8080:80 filebrowser/filebrowser

Now visit http://yourserver:8080. You have a better index in 30 seconds.