我需要一个表达式来匹配所有请求,无论如何。
这还不错吗?
location ~ ^/
我担心其他位置优先,绕过我的身份验证。
答案 0 :(得分:13)
您可以将ngx_http_auth_basic_module
设置放入以下任何一种情境中:
http, server, location, limit_except
您的版本
location ~ ^/
只有在server
部分中没有其他声明的位置时才会有效
例如:
server {
... #some server settings
location / { # full equivalent for "~ ^/"
auth_basic on;
auth_basic_user_file /path/to/some/file;
}
location /other_location {
# here http_auth not inherited
}
}
只需将http_auth
设置放入server
部分,并为此server
描述的所有位置都会继承此设置。
例如:
server {
... # some server settings
auth_basic on;
auth_basic_user_file /path/to/some/file;
location / {
# HERE http_auth settings would be
# inherited from previous configuration level.
}
}