Skip to content

Commit

Permalink
Fix default nuveUrl (#1598)
Browse files Browse the repository at this point in the history
  • Loading branch information
lodoyun authored Jun 9, 2020
1 parent 8aa0c2d commit 7fa5917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/basic_example/basicServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const config = require('./../../licode_config');

config.erizoController.ssl_key = config.erizoController.ssl_key || '../../cert/key.pem';
config.erizoController.ssl_cert = config.erizoController.ssl_cert || '../../cert/cert.pem';
config.basicExample.nuveUrl = config.basicExample.nuveUrl || 'http://localhost:3000';
config.basicExample.nuveUrl = config.basicExample.nuveUrl || 'http://localhost:3000/';

const options = {
key: fs.readFileSync(config.erizoController.ssl_key).toString(),
Expand Down

0 comments on commit 7fa5917

Please sign in to comment.