Skip to content

Instantly share code, notes, and snippets.

@Lenninlasd
Created October 28, 2015 19:18
Show Gist options
  • Save Lenninlasd/80ae5b99a068e095cc8a to your computer and use it in GitHub Desktop.
Save Lenninlasd/80ae5b99a068e095cc8a to your computer and use it in GitHub Desktop.
simple redirection
var http = require('http');
http.createServer(function (request, response) {
var url = 'https://flugel.firebaseapp.com/';
response.writeHead(302, {Location: encodeURI(url)});
response.end();
}).listen(80, function () {
console.log('Server running');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment