Skip to content

Instantly share code, notes, and snippets.

@mlakkadshaw
Created January 1, 2016 06:24
Show Gist options
  • Save mlakkadshaw/888e7e9ae9b585e9954c to your computer and use it in GitHub Desktop.
Save mlakkadshaw/888e7e9ae9b585e9954c to your computer and use it in GitHub Desktop.
module.exports = function(req, res, next) {
if (req.secure) {
// Already https; don't do anything special.
next();
} else {
// Redirect to https.
res.redirect('https://' + req.headers.host + req.url);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment