Skip to content

Instantly share code, notes, and snippets.

@mattrobenolt
Created November 29, 2011 05:11
Show Gist options
  • Save mattrobenolt/1403530 to your computer and use it in GitHub Desktop.
Save mattrobenolt/1403530 to your computer and use it in GitHub Desktop.
function build_absolute_url(req) {
var protocol = req.socket.encrypted ? 'https' : 'http',
host = req.headers.host || '<no host>';
return protocol+'://'+host+req.url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment