nginx:仅在http请求为OPTIONS时才不需要基本身份验证
作者:互联网
未与HTTP OPTIONS请求一起发送授权标头.我只想在请求为OPTIONS时禁用此身份验证,而将其保留用于其他请求.这是我目前拥有的相关配置代码.似乎看不出为什么它不起作用.我总是在OPTIONS请求中收到401未经授权的错误.
location ~ /foo/bar
{
if ($request_method = OPTIONS) {
set $auth_basic "off";
}
if ($request_method != OPTIONS)
{
set $auth_basic "Resctricted";
set $auth_basic_user_file /var/www/.htpasswd;
}
auth_basic $auth_basic;
auth_basic_user_file $auth_basic_user_file;
}
解决方法:
看起来是旧帖子,但找到了以下解决方案:
将以下配置放入“位置”中,然后从服务器中删除所有auth_basic.这会起作用
location / {
# Your node proxy configuration for example #
# Make options requests work #
limit_except OPTIONS {
auth_basic "Restricted access zone";
auth_basic_user_file /etc/nginx/pass/protected;
}
}
标签:nginx,basic-authentication,http-options-method 来源: https://codeday.me/bug/20191025/1932370.html