我正在尝试使用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;
}