view xml/ru/docs/http/ngx_http_autoindex_module.xml @ 102:c76a257f3fd4

The directive name is now automatically printed in <default> and <syntax>. Specifying <default> is made non-optional. Visible changes: - "types" and "proxy_set_header" get proper defaults (not yet displayed nicely); - "fastcgi_hide_header", "fastcgi_ignore_headers", "fastcgi_pass_header", "proxy_hide_header", "proxy_ignore_headers", and "proxy_pass_header" now have their (empty) defaults documented; - mentions of "fastcgi_redirect_errors" and "proxy_redirect_errors" which are long unsupported were removed.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 19 Oct 2011 05:15:24 +0000
parents 4a4caa566120
children 40eec261c2a6
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">

<module name="Директивы модуля ngx_http_autoindex_module"
        link="/ru/docs/http/ngx_http_autoindex_module.html"
        lang="ru">

<section name="" id="summary">

<para>
Модуль ngx_http_autoindex_module выдаёт листинг каталога.
Обычно запрос попадает к модулю ngx_http_autoindex_module,
когда модуль <link doc="ngx_http_index_module.xml">ngx_http_index_module</link> не нашёл индексный файл.
</para>

</section>


<section name="Пример конфигурации" id="example">

<para>
<example>
    location  /  {
        autoindex  on;
    }
</example>
</para>

</section>


<section name="Директивы" id="directives">

<directive name="autoindex">
<syntax><value>[on|off]</value></syntax>
<default>off</default>
<context>http, server, location</context>

<para>
Директива разрешает или запрещает вывод листинга каталога.
</para>

</directive>


<directive name="autoindex_exact_size">
<syntax><value>[on|off]</value></syntax>
<default>on</default>
<context>http, server, location</context>

<para>
Директива определяет, как выводить размеры файлов в листинге
каталога — точно, или округляя до килобайт, мегабайт и гигабайт.
</para>



</directive>


<directive name="autoindex_localtime">
<syntax><value>[on|off]</value></syntax>
<default>off</default>
<context>http, server, location</context>

<para>
Директива определяет, в какой временной зоне выводить время в листинге
каталога — в локальной или в GMT.
</para>

</directive>

</section>

</module>