From 5d1590f6d9dc07c1ef388f73783534e5015f6a9a Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 23 Jan 2025 17:06:45 +0100 Subject: [PATCH] test-app: Updated openvidu-server url port --- openvidu-testapp/src/app/app.component.ts | 2 +- openvidu-testapp/src/app/services/openvidu-params.service.ts | 2 +- openvidu-testapp/src/environments/environment.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openvidu-testapp/src/app/app.component.ts b/openvidu-testapp/src/app/app.component.ts index f648da1a..e57b0ca0 100644 --- a/openvidu-testapp/src/app/app.component.ts +++ b/openvidu-testapp/src/app/app.component.ts @@ -9,7 +9,7 @@ import { OpenviduParamsService } from './services/openvidu-params.service'; }) export class AppComponent { - openviduURL = window.location.protocol + '//' + window.location.hostname + ':7880/'; + openviduURL = window.location.protocol + '//' + window.location.hostname + ':4443/'; openviduSecret = 'secret'; constructor(private router: Router, private openviduParamsService: OpenviduParamsService) { } diff --git a/openvidu-testapp/src/app/services/openvidu-params.service.ts b/openvidu-testapp/src/app/services/openvidu-params.service.ts index e030dca4..8f80e71e 100644 --- a/openvidu-testapp/src/app/services/openvidu-params.service.ts +++ b/openvidu-testapp/src/app/services/openvidu-params.service.ts @@ -11,7 +11,7 @@ export class OpenviduParamsService { params: OpenviduParams = { - openviduUrl: window.location.protocol + '//' + window.location.hostname + ':7880/', + openviduUrl: window.location.protocol + '//' + window.location.hostname + ':4443/', openviduSecret: 'secret' }; diff --git a/openvidu-testapp/src/environments/environment.ts b/openvidu-testapp/src/environments/environment.ts index a6fbed02..fabe6b11 100644 --- a/openvidu-testapp/src/environments/environment.ts +++ b/openvidu-testapp/src/environments/environment.ts @@ -5,6 +5,6 @@ export const environment = { production: false, - OPENVIDU_URL: 'http://localhost:7880', + OPENVIDU_URL: 'http://localhost:4443', OPENVIDU_SECRET: 'secret' };