=encoding utf-8 =head1 NAME ngx_stream_access_module - Module ngx_stream_access_module =head1 The C module (1.9.2) allows limiting access to certain client addresses. =head1 Example Configuration server { ... deny 192.168.1.1; allow 192.168.1.0/24; allow 10.1.1.0/16; allow 2001:0db8::/32; deny all; } The rules are checked in sequence until the first match is found. In this example, access is allowed only for IPv4 networks C<10.1.1.0E16> and C<192.168.1.0E24> excluding the address C<192.168.1.1>, and for IPv6 network C<2001:0db8::E32>. =head1 Directives =head2 allow B allow I< I> E I> E C E C> B I B I Allows access for the specified network or address. If the special value C is specified, allows access for all UNIX-domain sockets. =head2 deny B deny I< I> E I> E C E C> B I B I Denies access for the specified network or address. If the special value C is specified, denies access for all UNIX-domain sockets.