/nginx-fancyindex-bolt-theme

boltcss theme for ngninx fancyindex

Primary LanguageCSSMIT LicenseMIT

nginx-fancyindex-bolt-theme

boltcss theme for nginx fancyindex

preview

Screenshot 2023-07-27 at 05-32-32 Index of Example

neat features

  • shows fancyindex_footer under header, for showing readmes or similar

example config

server {
    listen 80;
    server_name default_server;

    root /storage/;

    location / {
        fancyindex on;
        fancyindex_exact_size off;
        fancyindex_localtime on;
        fancyindex_css_href 'https://cdn.jsdelivr.net/gh/pikdum/nginx-fancyindex-bolt-theme/fancyindex-bolt.css';
        fancyindex_footer README.txt;
    }
}