Module ngx_http_access_module | english русский 简体中文 עברית 日本語 türkçe news about download security advisories documentation pgp keys faq links books support donation trac wiki nginx.com | ||||||||||||
The Access can also be limited by password. Simultaneous limitation of access by address and by password is controlled by the satisfy directive. Example Configuration
location / { 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, an access is allowed only for IPv4 networks
Directives
Allows access for the specified network or address.
Denies access for the specified network or address. |