Hi there,
My server default vhost has been configured properly for https traffic so I can access web pages using https://myserver.com.
However when I serve a NodeJS app running at port 3000, I can only access the app via http for example http://myserver.com:3000.
How can I make it available at https://myserver.com:3000?
I have tried adding a listener with the "Port" field set to 3000 and "Secure" field set to Yes. Then I added the default vhost into the vhost mapping list. Then in the SSL tab of the listener I filled in the "Private Key File" and "Certificate File" fields with the same values coming from the default vhost because I presume the SSL cert should be the same.
Then after a graceful restart, https://myserver:3000 is still not showing the Node app.
Can anyone help?
My server default vhost has been configured properly for https traffic so I can access web pages using https://myserver.com.
However when I serve a NodeJS app running at port 3000, I can only access the app via http for example http://myserver.com:3000.
How can I make it available at https://myserver.com:3000?
I have tried adding a listener with the "Port" field set to 3000 and "Secure" field set to Yes. Then I added the default vhost into the vhost mapping list. Then in the SSL tab of the listener I filled in the "Private Key File" and "Certificate File" fields with the same values coming from the default vhost because I presume the SSL cert should be the same.
Then after a graceful restart, https://myserver:3000 is still not showing the Node app.
Can anyone help?