Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application up and running on heroku with express on node with https,. How do I identify the protocol to force a redirect to https with nodejs on heroku?

My app is just a simple http server, it doesn't (yet) realize heroku is sending it https requests:

/* Heroku provides the port they want you on in this environment variable (hint: it's not 80) */
app.listen(process.env.PORT || 3000);
share|improve this question
Heroku support answered my above question, and I didn't find it posted here already, so I thought I'd post it in public and share the knowledge. They pass a lot of info about the original request with it's request headers prefixed with an 'x-'. Here's the code I'm using now (at the top of my route definitions): app.get('*',function(req,res,next){ if(req.headers['x-forwarded-proto']!='https') res.redirect('https://mypreferreddomain.com'+req.url) else next() }) – Derek Bredensteiner Aug 25 '11 at 4:46
Derek - feel free to post this as an answer to your own question so that you don't have to cram it into a comment. You can even mark it as the accepted answer! – Brandon Tilley Aug 25 '11 at 5:52

1 Answer

up vote 19 down vote accepted

The answer is to use the header of 'x-forwarded-proto' that Heroku passes forward as it does it's proxy thingamabob. (side note: They pass several other x- variables too that may be handy, check them out).

My code:

/* At the top, with other redirect methods before other routes */
app.get('*',function(req,res,next){
  if(req.headers['x-forwarded-proto']!='https')
    res.redirect('https://mypreferreddomain.com'+req.url)
  else
    next() /* Continue to other routes if we're not redirecting */
})

Thanks Brandon, was just waiting for that 6 hour delay thing that wouldn't let me answer my own question.

share|improve this answer
wouldn't this let other methods than GET through? – Jed Schmidt Feb 11 at 5:57
@Jed Schmidt: yep, looks like it should be app.all(... – Aaron Feb 14 at 5:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.