Skip to content

Instantly share code, notes, and snippets.

@hokaccha
Created May 8, 2012 14:28
Show Gist options
  • Save hokaccha/2635569 to your computer and use it in GitHub Desktop.
Save hokaccha/2635569 to your computer and use it in GitHub Desktop.
// expressで/public以下だけbasic認証外したい場合
var basicAuth = express.basicAuth(user, password);
app.use(function(req, res, next) {
if (/^\/public\//.test(req.path)) {
next();
}
else {
basicAuth(req, res, next);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment