view xml/en/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="Module ngx_stream_set_module"
        link="/en/docs/stream/ngx_stream_set_module.html"
        lang="en"
        rev="1">

<section id="summary">

<para>
The <literal>ngx_stream_set_module</literal> module (1.19.3) allows
setting a value for a variable.
</para>

</section>


<section id="example" name="Example Configuration">

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

</section>


<section id="directives" name="Directives">

<directive name="set">
<syntax><value>$variable</value> <value>value</value></syntax>
<default/>
<context>server</context>

<para>
Sets a <value>value</value> for the specified <value>variable</value>.
The <value>value</value> can contain text, variables, and their combination.
</para>

</directive>

</section>

</module>