From d1b78ef8f7476a436a1bdb35b62b537471173723 Mon Sep 17 00:00:00 2001 From: cruizba Date: Wed, 26 Jun 2024 18:20:58 +0200 Subject: [PATCH] Change default port to 6080 --- .../src/main/resources/application.properties | 4 ++-- openvidu-call-back/src/config.ts | 2 +- openvidu-call-front/src/proxy.conf.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openvidu-call-back-java/src/main/resources/application.properties b/openvidu-call-back-java/src/main/resources/application.properties index 4e4fc03c..3c6f09c7 100644 --- a/openvidu-call-back-java/src/main/resources/application.properties +++ b/openvidu-call-back-java/src/main/resources/application.properties @@ -1,5 +1,5 @@ spring.mvc.converters.preferred-json-mapper=gson -server.port: 5000 +server.port: 6080 server.ssl.enabled: false OPENVIDU_URL: http://localhost:4443 @@ -12,4 +12,4 @@ CALL_SECRET: MY_SECRET CALL_RECORDING: ENABLED CALL_BROADCAST: ENABLED -CALL_ADMIN_SECRET: MY_SECRET \ No newline at end of file +CALL_ADMIN_SECRET: MY_SECRET diff --git a/openvidu-call-back/src/config.ts b/openvidu-call-back/src/config.ts index 591cd104..4fb56ab7 100644 --- a/openvidu-call-back/src/config.ts +++ b/openvidu-call-back/src/config.ts @@ -1,4 +1,4 @@ -export const SERVER_PORT = process.env.SERVER_PORT || 5000; +export const SERVER_PORT = process.env.SERVER_PORT || 6080; export const OPENVIDU_URL = process.env.OPENVIDU_URL || 'http://localhost:7880'; export const OPENVIDU_SECRET = process.env.OPENVIDU_SECRET || 'secret'; export const CALL_OPENVIDU_CERTTYPE = process.env.CALL_OPENVIDU_CERTTYPE || 'selfsigned'; diff --git a/openvidu-call-front/src/proxy.conf.json b/openvidu-call-front/src/proxy.conf.json index 82ae5b92..71a624ae 100644 --- a/openvidu-call-front/src/proxy.conf.json +++ b/openvidu-call-front/src/proxy.conf.json @@ -1,6 +1,6 @@ { "/": { - "target": "http://localhost:5000", + "target": "http://localhost:6080", "secure": false } } \ No newline at end of file