demo????

安装

参考????

  1. 配置 autoindex.html ⏬
    在 nginx autoindex 指令下面添加 add_after_body /autoindex.html; 然后重启 nginx 即可

  2. add_after_body

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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
  • 2021-12-06
  • 2021-12-01
  • 2022-12-23
猜你喜欢
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2021-06-04
相关资源
相似解决方案