I have three apps on Parse.com one is my DEV environment, one is my QA environment and one is my live Production environment. Is there anyway to completely block my DEV and QA sites from the outside world? Typically I would do this using .htaccess, but that's obviously not an option.
I know that I can use basicAuth in my express.js setup, but that seems to only work for a designated endpoint. Is there anyway to set that up to cover the entire root domain?
Figured this out...
var basicAuth = express.basicAuth('xxxxx','xxxxxx'); app.use('/',basicAuth);