blob: 36256817a9a9c5251339ac7ab2d2faa1e8bcd33f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
=encoding utf-8
=head1 NAME
ngx_stream_set_module - Module ngx_stream_set_module
=head1
The C<ngx_stream_set_module> module (1.19.3) allows
setting a value for a variable.
=head1 Example Configuration
server {
listen 12345;
set $true 1;
}
=head1 Directives
=head2 set
B<syntax:> set I<I<C<$variable>> I<C<value>>>
B<context:> I<server>
Sets a I<C<value>> for the specified I<C<variable>>.
The I<C<value>> can contain text, variables, and their combination.
|