view xml/ru/docs/http/ngx_http_secure_link_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 1d315ef37215
children 40eec261c2a6
line wrap: on
line source

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

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

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

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

<para>
Модуль ngx_http_secure_link_module — это модуль проверяющий
правильность запрашиваемой ссылки (0.7.18+).
По умолчанию модуль не собирается, нужно разрешить его сборку
при конфигурировании параметром
<command>--with-http_secure_link_module</command>.
</para>

</section>


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

<para>
<example>
location /p/ {
    secure_link_secret   some_secret_word;

    if ($secure_link = "") {
        return 403;
    }
}
</example>
</para>

</section>


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

<directive name="secure_link_secret">
<syntax><value>слово</value></syntax>
<default/>
<context>location</context>

<para>
Директива задаёт секретное слово для проверки правильности ссылки.
Полный URL защищённой ссылки вглядит так:
<example>
/prefix/<value>hash</value>/<value>ссылка</value>
</example>
где hash считается как
<example>
md5(ссылка, секретное_слово);
</example>
</para>

<para>
Префикс — произвольная строка, не включающая слэш.
</para>

</directive>

</section>


<section name="Встроенные переменные" id="variables">

<para>
<list type="bullet">

<listitem>
$secure_link, эта переменная равна ссылке выделенной из полного URL'а.
Если хэш неверный, то переменная равна пустой строке.
</listitem>

</list>
</para>

</section>

</module>