nginx

ngx_http_autoindex_module模块


english
русский

简体中文
עברית
日本語
türkçe

新闻 [en]
nginx 介绍
下载 [en]
安全漏洞 [en]
文档
FAQ
外部连接 [en]
书籍 [en]
支持 [en]
捐献 [en]

trac
wiki
twitter
nginx.com
翻译内容可能已经过旧。 你可以通过 英文版本 查看最近的更新。
配置示例
指令
     autoindex
     autoindex_exact_size
     autoindex_localtime

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