配置 Nginx 的目录浏览功能

Posted To be a better Programer...

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置 Nginx 的目录浏览功能相关的知识,希望对你有一定的参考价值。

nginx 默认是不允许列出整个目录的,需要配置 Nginx 自带的 ngx_http_autoindex_module 模块实现目录浏览功能 。

location / {
    alias /opt/files/;
    
    autoindex on;
    autoindex_exact_size off;
    autoindex_localtime on;
}

autoindex_exact_size off;
默认为on,显示出文件的确切大小,单位是bytes。
改为off后,显示出文件的大概大小,单位是kB或者MB或者GB

autoindex_localtime on;
默认为off,显示的文件时间为GMT时间。
改为on后,显示的文件时间为文件的服务器时间

REFER:
http://nginx.org/en/docs/http/ngx_http_autoindex_module.html
http://www.swiftyper.com/2016/12/08/nginx-autoindex-configuration/







以上是关于配置 Nginx 的目录浏览功能的主要内容,如果未能解决你的问题,请参考以下文章

Nginx浏览目录配置及美化

linux学习:Nginx--常见功能配置片段与优化-06

如何让nginx实现手机能访问本地代码的功能

重识Nginx - 08 使用ngx_http_autoindex_module实现目录浏览功能

nginx配置反向代理缓存负载均衡

linux nginx 配置了SVN,代码提交上去后,谷歌浏览器访问出现403,要怎么解决