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

I'm running a node/express service on AWS and have deployed an ELB in front of it. When I spin up an ELB instance with SSL enabled, it works for the first page I hit, but then switches over to HTTP for every server access after that.

The routing rule on the ELB terminates the SSL and forwards to port 8080 which node is listening on.

The SSL termination solution will work fine for my purposes, but how can I keep subsequent server calls on HTTPS?

share|improve this question
1  
Are you returning http:// links to the client? – arx Jan 26 '12 at 20:26
I cannot find one. All the paths in the client are relative (for ajax calls). – Greg Jan 26 '12 at 20:37
Most browsers have some means of tracing all the calls being made from your code, monitoring redirections, etc. I'd run a trace and see where the http links are coming from (e.g. either from your code or redirections from the far end). – arx Jan 26 '12 at 21:08
I think the root cause is the way that express does redirects. Unless the node server was created with HTTPS, redirects default to HTTP. I can't find that in the docs anywhere, but it is certainly behaving that way. I need to find a way to do a rewrite of the header. – Greg Jan 26 '12 at 21:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.