diff options
author | Marvin Borner | 2019-02-11 21:30:39 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-11 21:30:39 +0100 |
commit | 7a77f7486201d5f237087506a709160d63f47550 (patch) | |
tree | 413415654f392ba0d171664c755a37d694804dea /public | |
parent | 7124fd56d50180f6e2253817e0d0acf30aac9a48 (diff) |
Added deployment options for server
Diffstat (limited to 'public')
-rw-r--r-- | public/scripts/chat.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index eda7a24..eac7246 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -15,7 +15,7 @@ const swal = require('sweetalert'); const xkcdPassword = require('xkcd-password'); // setup vars -const host = '127.0.0.1'; +const host = 'meta.marvinborner.de'; let peerId, call, passphrase, connectedPeer; let connectedPeers = []; // TODO: Save new peers in array @@ -84,7 +84,7 @@ function chat() { $('#chat').fadeIn(); // start the peer - const peer = new Peer(peerId, {host: host, port: 8080, path: '/api', debug: 0}); + const peer = new Peer(peerId, {host: host, port: 4242, path: '/api', debug: 0}); // Peer events peer.on('call', call => getMediaStream(stream => call.answer(stream))); // TODO: Ask for call accept |