Skip to content

Commit

Permalink
Makes multeor listen on unprivileged port 1443
Browse files Browse the repository at this point in the history
  • Loading branch information
filidorwiese committed Aug 22, 2018
1 parent 55136ab commit aedb419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Start websocket on port 443
// Start websocket on port 1443
// https://github.com/LearnBoost/socket.io/wiki/Socket.IO-and-firewall-software
// https://github.com/LearnBoost/Socket.IO/wiki/Configuring-Socket.IO
var fs = require('fs');
var sys = require('sys');
var mkdirp = require('mkdirp');
var io = require('socket.io').listen(443);
var io = require('socket.io').listen(1443);
io.enable('browser client minification');
io.enable('browser client etag');
io.enable('browser client gzip');
Expand Down

0 comments on commit aedb419

Please sign in to comment.