NGINX MODULES¶
ngx_http_autoindex_module¶
The ngx_http_autoindex_module
module processes requests ending
with the slash character (‘/
’) and produces a directory
listing. Usually a request is passed to the
ngx_http_autoindex_module
module when the
ngx_http_index_module module
cannot find an index file.
location / {
autoindex on;
}
Syntax: |
|
Default: |
autoindex off |
Context: |
|
Enables or disables the directory listing output.
Syntax: |
|
Default: |
autoindex_exact_size off |
Context: |
|
For the HTML format, specifies whether exact file sizes should be output in the directory listing, or rather rounded to kilobytes, megabytes, and gigabytes.
Syntax: |
|
Default: |
autoindex_format html |
Context: |
|
This directive appeared in version 1.7.9.
Sets the format of a directory listing.
When the JSONP format is used, the name of a callback function is set with the
callback
request argument. If the argument is missing or has an empty value, then the JSON format is used.The XML output can be transformed using the ngx_http_xslt_module module.
Syntax: |
|
Default: |
autoindex_localtime off |
Context: |
|
For the HTML format, specifies whether times in the directory listing should be output in the local time zone or UTC.