Skip to content

Commit

Permalink
Change default port to 6080
Browse files Browse the repository at this point in the history
  • Loading branch information
cruizba committed Jun 26, 2024
1 parent 091af91 commit d1b78ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -12,4 +12,4 @@ CALL_SECRET: MY_SECRET

CALL_RECORDING: ENABLED
CALL_BROADCAST: ENABLED
CALL_ADMIN_SECRET: MY_SECRET
CALL_ADMIN_SECRET: MY_SECRET
2 changes: 1 addition & 1 deletion openvidu-call-back/src/config.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion openvidu-call-front/src/proxy.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"/": {
"target": "http://localhost:5000",
"target": "http://localhost:6080",
"secure": false
}
}

0 comments on commit d1b78ef

Please sign in to comment.