Skip to content

Instantly share code, notes, and snippets.

@jeffskelton3
Created October 9, 2015 04:37
Show Gist options
  • Save jeffskelton3/597b278e9e58fb3cf379 to your computer and use it in GitHub Desktop.
Save jeffskelton3/597b278e9e58fb3cf379 to your computer and use it in GitHub Desktop.
app.use(function(req, res, next) {
var schema = req.headers['x-forwarded-proto'];
if (schema === 'https') {
next();
}
else {
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