如何在Nginx中仅为POST请求启用auth_basic?

时间:2016-05-11 09:47:28

标签: nginx http-authentication

我在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 questionNginx docs。你能帮我解决这个问题吗?

0 个答案:

没有答案