ngx_http_autoindex_module 模块

优质
小牛编辑
131浏览
2023-12-01

ngx_http_autoindex_module 模块可以列出目录中的文件。 一般当ngx_http_index_module模块找不到默认主页的时候,会把请求转给 ngx_http_autoindex_module模块去处理。

配置示例

location / {
    autoindex on;
}

指令

语法:autoindex on | off;
默认值:
autoindex off;
上下文:http, server, location

开启或者关闭列出目录中文件的功能。

语法:autoindex_exact_size on | off;
默认值:
autoindex_exact_size on;
上下文:http, server, location

设置目录中列出的文件是显示精确大小,还是对KB,MB,GB进行四舍五入。

语法:autoindex_localtime on | off;
默认值:
autoindex_localtime off;
上下文:http, server, location

设置目录中列出文件的时间是本地时间还是UTC时间。

翻译: Weibin Yao