ngx_http_autoindex_module
模块可以列出目录中的文件。 一般当ngx_http_index_module模块找不到默认主页的时候,会把请求转给 ngx_http_autoindex_module
模块去处理。
location / { autoindex on; }
语法: | autoindex |
默认值: | autoindex off; |
上下文: | http , server , location |
开启或者关闭列出目录中文件的功能。
语法: | autoindex_exact_size |
默认值: | autoindex_exact_size on; |
上下文: | http , server , location |
设置目录中列出的文件是显示精确大小,还是对KB,MB,GB进行四舍五入。
语法: | autoindex_localtime |
默认值: | autoindex_localtime off; |
上下文: | http , server , location |
设置目录中列出文件的时间是本地时间还是UTC时间。
翻译: Weibin Yao |