- 为了更直观的查看和下载文件,可以用nginx做成目录浏览
- 设置全局的在
http
里设置保证和server
同级
http{
autoindex on; #开启nginx目录浏览功能
autoindex_exact_size off; #文件大小从KB开始显示
autoindex_localtime on; #显示文件修改时间为服务器本地时间
.............
}
- 只打开网站部分(location )目录浏览功能,这里有个坑,我在windows上root 中文的文件夹名字不行。mac上也一样
location / {
root ../../360Download;
autoindex on; #开启nginx目录浏览功能
autoindex_exact_size off; #文件大小从KB开始显示
autoindex_localtime on; #显示文件修改时间为服务器本地时间
}
- 效果图
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。