H5ai 太臃肿?想要一个简单的文件共享,那就用 Nginx 的 autoindex 吧,Duang 一下!

  • 使用 Nginx 的 autoindex 页脚 ( Footer ) 功能添加 JavaScript 来重新渲染并美化页面。
  • 使用 Twitter Bootstrap 和 Github Octicons 做素材,并适配移动端。
  • 检测当前页面 README.md 并渲染,和 Github 保持一致。

配置方法

https://phuslu.github.io/autoindex.html 下载到站点根目录,并重命名为.autoindex.html

在站点 Nginx 配置文件添加:

location ~ ^(.*)/$ {    
    charset utf-8;
    autoindex       on;
    autoindex_localtime on;
    autoindex_exact_size off;
    add_after_body /.autoindex.html;
    }

然后 重启 Nginx 即可。


参考

https://phuslu.github.io/autoindex.html