如何在一个特定的IP范围内禁用Nginx的http基本身份validation?

我正在开发一个应用程序与Facebooklogin。 到目前为止,它不公开,并受nginx中的http basic auth保护。 是否有可能禁用Facebook的IP范围的httpauthentication,以便我们可以让我们的testing人员也testingFacebook的function? 请包括一个示例configuration代码片段,如果可能的话。

    使用满足指令允许访问。 32934是Facebook的自治系统,看看facebook的ip 。

    satisfy any; allow 66.220.144.0/20; allow 66.220.152.0/21; allow ... deny all; auth_basic "closed site"; auth_basic_user_file conf/htpasswd;