I have a Node.js app which is heavily reliant on websockets. I want to redirect anyone trying to access it via http (80) to https (443). I would use nginx however it does not play well with websockets. No other service needs to run on the server.

What is the best way to do this redirect?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Many ways to do this but a simple one would be for Nginx to listen only on port 80 (HTTP) and redirect all traffic to 443 (where nodejs is listneing) before any web socket connections are initiated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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