diff xml/en/docs/stream/ngx_stream_access_module.xml @ 1503:a9ffc9dd41e0

Added the "ngx_stream_access_module" module.
author Yaroslav Zhuravlev <yar@nginx.com>
date Wed, 10 Jun 2015 14:02:58 +0300
parents xml/en/docs/http/ngx_http_access_module.xml@6316a7579448
children
line wrap: on
line diff
copy from xml/en/docs/http/ngx_http_access_module.xml
copy to xml/en/docs/stream/ngx_stream_access_module.xml
--- a/xml/en/docs/http/ngx_http_access_module.xml
+++ b/xml/en/docs/stream/ngx_stream_access_module.xml
@@ -7,26 +7,18 @@
 
 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
 
-<module name="Module ngx_http_access_module"
-        link="/en/docs/http/ngx_http_access_module.html"
+<module name="Module ngx_stream_access_module"
+        link="/en/docs/stream/ngx_stream_access_module.html"
         lang="en"
-        rev="3">
+        rev="1">
 
 <section id="summary">
 
 <para>
-The <literal>ngx_http_access_module</literal> module allows
+The <literal>ngx_stream_access_module</literal> module (1.9.2) allows
 limiting access to certain client addresses.
 </para>
 
-<para>
-Access can also be limited by
-<link doc="ngx_http_auth_basic_module.xml">password</link> or by the
-<link doc="ngx_http_auth_request_module.xml">result of subrequest</link>.
-Simultaneous limitation of access by address and by password is controlled
-by the <link doc="ngx_http_core_module.xml" id="satisfy"/> directive.
-</para>
-
 </section>
 
 
@@ -34,7 +26,8 @@ by the <link doc="ngx_http_core_module.x
 
 <para>
 <example>
-location / {
+server {
+    ...
     deny  192.168.1.1;
     allow 192.168.1.0/24;
     allow 10.1.1.0/16;
@@ -50,9 +43,6 @@ In this example, access is allowed only 
 <literal>10.1.1.0/16</literal> and <literal>192.168.1.0/24</literal>
 excluding the address <literal>192.168.1.1</literal>,
 and for IPv6 network <literal>2001:0db8::/32</literal>.
-In case of a lot of rules, the use of the
-<link doc="ngx_http_geo_module.xml">ngx_http_geo_module</link>
-module variables is preferable.
 </para>
 
 </section>
@@ -67,14 +57,12 @@ module variables is preferable.
     <literal>unix:</literal> |
     <literal>all</literal></syntax>
 <default/>
-<context>http</context>
+<context>stream</context>
 <context>server</context>
-<context>location</context>
-<context>limit_except</context>
 
 <para>
 Allows access for the specified network or address.
-If the special value <literal>unix:</literal> is specified (1.5.1),
+If the special value <literal>unix:</literal> is specified,
 allows access for all UNIX-domain sockets.
 </para>
 
@@ -88,14 +76,12 @@ allows access for all UNIX-domain socket
     <literal>unix:</literal> |
     <literal>all</literal></syntax>
 <default/>
-<context>http</context>
+<context>stream</context>
 <context>server</context>
-<context>location</context>
-<context>limit_except</context>
 
 <para>
 Denies access for the specified network or address.
-If the special value <literal>unix:</literal> is specified (1.5.1),
+If the special value <literal>unix:</literal> is specified,
 denies access for all UNIX-domain sockets.
 </para>