Skip to content

Instantly share code, notes, and snippets.

@digitalbocca
Created April 16, 2018 23:10
Show Gist options
  • Save digitalbocca/aeb2cc257c659d3311a2f6e75dc68d10 to your computer and use it in GitHub Desktop.
Save digitalbocca/aeb2cc257c659d3311a2f6e75dc68d10 to your computer and use it in GitHub Desktop.
https to http - express
req.headers['x-forwarded-proto'] === 'http' ? next() : res.redirect('http://' + req.hostname + req.originalUrl)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment