Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created December 1, 2015 16:27
Show Gist options
  • Save nurfarazi/88bdcb269904d66d1686 to your computer and use it in GitHub Desktop.
Save nurfarazi/88bdcb269904d66d1686 to your computer and use it in GitHub Desktop.
// set up plain http server
var http = express.createServer();
// set up a route to redirect http to https
http.get('*',function(req,res){
res.redirect('https://mydomain.com'+req.url)
})
// have it listen on 8080
http.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment