官方文档: https://nginx.org/en/docs/http/ngx_http_access_module.html
    官方案例
    image.png
    语法

    1. Syntax: allow address | CIDR | unix: | all;
    2. Default:
    3. Context: http, server, location, limit_except
    4. Allows access for the specified network or address. If the special value unix: is specified (1.5.1), allows access for all UNIX-domain sockets.

    确认nginx安装的时候加入了 ngx_http_access_module 这个模块
    随后在想要进行访问控制的路径进行配置

    1. location /admin {
    2. allow 172.16.1.100; #允许访问
    3. deny all; #不允许访问
    4. }

    image.png
    image.png