nginx

Module ngx_http_autoindex_module


english
русский

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

news
about
download
security advisories
documentation
pgp keys
faq
links
books
support
donation

trac
wiki
twitter
nginx.com
Example Configuration
Directives
     autoindex
     autoindex_exact_size
     autoindex_localtime

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 could not find an index file.

Example Configuration

location / {
    autoindex on;
}

Directives

syntax: autoindex on | off;
default:
autoindex off;
context: http, server, location

Enables or disables a directory listing output.

syntax: autoindex_exact_size on | off;
default:
autoindex_exact_size on;
context: http, server, location

Specifies whether file sizes in the directory listing should be output exactly, or rounded to kilobytes, megabytes, and gigabytes.

syntax: autoindex_localtime on | off;
default:
autoindex_localtime off;
context: http, server, location

Specifies whether times in the directory listing should be output in a local time zone or UTC.