403错误将NGINX配置为IP限制使用密码保护访问

时间:2018-11-13 19:28:10

标签: nginx nginx-location nginx-config

我正在尝试使用IP和密码保护来限制对nginx上我的管理目录的访问。我的配置如下。使用配置中允许的IP时,我仍然收到403错误。密码设置正确,当我从配置中删除allow / deny指令时会显示密码

   location /admin {
    status;
    satisfy all;
    allow   45.56.0.0/16;
    allow   180.149.0.0/16;
    deny all;
    auth_basic "Scicon Restricted Area";
    auth_basic_user_file /etc/apache2/.htpasswd;
    }

0 个答案:

没有答案