I'm developing an application with facebook login. So far it's not public and is protected by http basic auth in nginx. Is it possible to disable http auth for facebook's ip range so that we can have our tester test the facebook capabilities as well? Please, include an example configuration snippet, if possible.
Asked
Active
Viewed 4.7k times
1 Answers
72
Use satisfy directive to allow access. 32934 is facebook autonomous system, look 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;
ooshro
- 11,502