From 7a77f7486201d5f237087506a709160d63f47550 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 11 Feb 2019 21:30:39 +0100 Subject: Added deployment options for server --- public/scripts/chat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'public') 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 -- cgit v1.2.3