码迷,mamicode.com
首页 > 其他好文 > 详细

配置 Nginx 的目录浏览功能

时间:2018-06-18 12:46:28      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:block   .com   conf   IV   dex   ott   ack   file   配置   

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 的目录浏览功能

标签:block   .com   conf   IV   dex   ott   ack   file   配置   

原文地址:https://www.cnblogs.com/Irving/p/9194800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!