Openshift node.js: do I need to download ssl certificates in a web console or in an application?

In order to run HTTPS in my node.js application, I upload certificates to my application. It works great on my laptop. I am now pushing my work to OpenShift, but the application no longer works (ligatures.net).

Openshift [documentation] [1] says that certificates can be downloaded through the web console. So do I need to download my SSL certificates in my application or should I rely on the web console instead?

0
source share
1 answer

You need to download ssl certificates in the OpenShift web console, since ssl terminates on the proxy server, which is part of the node on which your device is installed.

+1
source

Source: https://habr.com/ru/post/974787/


All Articles