我想要达到以下结果:
- 将基本身份验证应用于任何位置、文件、路径
- 删除 IP/CIDR 范围白名单的基本身份验证
- 禁止除一个 IP 地址(包括上述地址)之外的所有人访问特定目录及其下的所有内容
这是我正在使用的 nginx 配置:
server {
listen 80 default;
# Basic auth
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
satisfy any;
# IP whitelist
include /etc/nginx/conf.d/ip-whitelist.conf.include;
deny all;
# Lock down the "hello" directory to specific IP addresses
location /hello/ {
# Developers only - ever!
allow 12.34.56.78;
deny all;
}
# ...
}
目前发生的情况是,上面项目符号列表中的第一点和第二点正在发挥作用 - 即白名单中的任何 IP 在整个站点上都无需进行基本身份验证,但如果 IP 不在白名单中,则会提示他们进行基本身份验证。
但是“hello”的位置块似乎不起作用,并且仍然允许“hello”目录下的任何内容使用与上述相同的条件,例如,如果我尝试/hello/world.php
从白名单 IP 访问,则会提供服务。如果我从非白名单 IP 访问,我会获得基本身份验证。
我想阻止除 IP 之外的任何人访问“hello”目录12.34.56.78
(示例)。
我需要改变什么?
答案1
正如您所发现的,不建议在服务器级别设置身份验证,因为它们将应用于所有位置。虽然可以关闭基本身份验证,但似乎没有办法清除现有的 IP 白名单。
更好的解决方案是将身份验证添加到/
位置,以便它不会被继承/hello
。
如果您有其他位置需要基本身份验证和 IP 白名单,则会出现问题,在这种情况下,可能值得考虑将身份验证组件移动到包含文件或将其嵌套在/
.
server {
listen 80 default;
# Lock down the "root" directory to specific IP addresses
location / {
satisfy any;
# Basic auth
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
# IP whitelist
include /etc/nginx/conf.d/ip-whitelist.conf.include;
deny all;
# Inherits auth settings from parent
location ~ \.php$ {
# PHP specific config
}
}
# Lock down the "hello" directory to specific IP addresses
location /hello/ {
# Developers only - ever!
allow 12.34.56.78;
deny all;
}
# ...
}