view xml/ru/docs/stream/ngx_stream_set_module.xml @ 2769:16f6fa718be2

Updated TLSv1.3 support notes. Previous notes described some early development snapshot of OpenSSL 1.1.1 with disabled TLSv1.3 by default. It was then enabled in the first alpha. Further, the updated text covers later major releases such as OpenSSL 3.0.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 30 Sep 2021 16:29:20 +0300
parents 2fd28cd4f2f8
children
line wrap: on
line source

<?xml version="1.0"?>

<!--
  Copyright (C) Nginx, Inc.
  -->

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

<module name="Модуль ngx_stream_set_module"
        link="/ru/docs/stream/ngx_stream_set_module.html"
        lang="ru"
        rev="1">

<section id="summary">

<para>
Модуль <literal>ngx_stream_set_module</literal> (1.19.3) позволяет
устанавливать значение переменной.
</para>

</section>


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

<para>
<example>
server {
    listen 12345;
    set    $true 1;
}
</example>
</para>

</section>


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

<directive name="set">
<syntax><value>$переменная</value> <value>значение</value></syntax>
<default/>
<context>server</context>

<para>
Устанавливает значение указанной переменной.
В качестве значения можно использовать текст, переменные и их комбинации.
</para>

</directive>

</section>

</module>