Openvidu v2.14 Port Configuration

Hi,

In our current application we are using openvidu 2.11 and in our server we have a node express rest api server that is hosted on port 443. Concurrently inside this server the openvidu application is also running. Our usual working case is the client makes a rest api call to the express server that then calls the openvidu node functions such as get-token and then publishes the stream.

The problem with openvidu v2.14 is that the main new openvidu application is using the port 443 so we cannot host our separate express server on it. This is a problem since the client needs to make https calls which are first vetted to see what type of client it is and what streaming privileges they get before calling the openvidu functions to start the stream.

So to summarize can we change the main openvidu application from not using port 443 but instead use some other port? We do not need access to the dashboard or the openvidu call sample application.

Thanks and hoping for a speedy answer.

OpenVidu 2.14 allows configure the main port using the config property HTTPS_PORT.

Nevertheless, if you want to use the same certificate for OpenVidu and for your own app, if you deploy your app in port 5442, it will be available in the root path https://your.domain:443/ because NGINX deployed with OpenVidu is configured to do it.

Regards