我在Nginx中收到以下错误消息:
"满足"这里不允许使用指令
这是我的基本HTTP身份验证的nginx配置:
location / {
limit_except GET {
satisfy any;
allow some_address;
allow another_address;
deny all;
auth_basic "Elasticsearch Authentication";
auth_basic_user_file some_file;
}
}
此配置的灵感来自this question和Nginx docs。你能帮我解决这个问题吗?