Module ngx_http_autoindex_module

nginx


english
עברית
日本語
русский
türkçe

news

about
download
security advisories
documentation
introduction
pgp keys
howto
faq
trac
wiki
links
books
support
donation
nginx.com
@nginxorg
Example Configuration
Directives
     autoindex
     autoindex_exact_size
     autoindex_localtime

The ngx_http_autoindex_module module 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.