无论如何,我都需要一个表达式来匹配所有请求。
这够好吗?
location ~ ^/
我担心其他位置优先,绕过我的身份验证。
您可以将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.
}
}