月度归档: 2024 年 8 月

1 篇文章

Nginx 通过 AutoIndex 实现目录浏览功能
最近在折腾某些东西的时候发现了这个网站 https://phus.lu/ 觉得还不错,刚好我最近也有想法整一个这个用来上传我的文件。 配置 启用 AutoIndex 这个非常的简单,只需要在想要启用 AutoIndex 的站点的 server 块中添加下方的配置 location / { charset utf-8; autoindex on; a…