Update openvidu-call OPENVIDU_URL deafault value

This commit is contained in:
pabloFuente 2022-08-05 14:32:45 +02:00
parent 09aedf8109
commit 7b16cd3dbb

View File

@ -1,5 +1,5 @@
export const SERVER_PORT = process.env.SERVER_PORT || 5000;
export const OPENVIDU_URL = process.env.OPENVIDU_URL || 'https://localhost:4443';
export const OPENVIDU_URL = process.env.OPENVIDU_URL || 'http://localhost:4443';
export const OPENVIDU_SECRET = process.env.OPENVIDU_SECRET || 'MY_SECRET';
export const CALL_OPENVIDU_CERTTYPE = process.env.CALL_OPENVIDU_CERTTYPE || 'selfsigned';
export const ADMIN_SECRET = process.env.ADMIN_SECRET || OPENVIDU_SECRET;