Is it possible to deploy a node.js app on Cloud Foundry that listens for HTTPS requests on port 443?

I can find various references to SSL support in the Cloud Foundry forums, but no actual examples of HTTPS apps. The article "Setup SSL on cloudfoundry landscape" seems to indicate that I need to install nginx and use that, but there is not really enough information there to tell me what I need to do.

link|improve this question
feedback

1 Answer

The SSL connection will terminate at the loadbalancer and then forward the unencrypted HTTP connection to your node app.

Just use https://your-app.cloudfoundry.com instead of http://...

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.