mirror of https://github.com/calzoneman/sync.git
Add io-host option
This commit is contained in:
parent
6aecb32c89
commit
bca7199ec1
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Sep 6 16:29 2013 CDT
|
||||||
|
* lib/config.js: Add an io-host option to allow binding socket.io to
|
||||||
|
a different IP than the webserver
|
||||||
|
|
||||||
Fri Sep 6 15:51 2013 CDT
|
Fri Sep 6 15:51 2013 CDT
|
||||||
* lib/utilities.js: Tweak the throttle code for rate limiters to fix
|
* lib/utilities.js: Tweak the throttle code for rate limiters to fix
|
||||||
incorrect behavior of the burst cap after the cooldown period has
|
incorrect behavior of the burst cap after the cooldown period has
|
||||||
|
|
|
@ -19,6 +19,7 @@ var defaults = {
|
||||||
"mysql-user" : "cytube",
|
"mysql-user" : "cytube",
|
||||||
"mysql-pw" : "supersecretpass",
|
"mysql-pw" : "supersecretpass",
|
||||||
"express-host" : "0.0.0.0",
|
"express-host" : "0.0.0.0",
|
||||||
|
"io-host" : "0.0.0.0",
|
||||||
"asset-cache-ttl" : 0,
|
"asset-cache-ttl" : 0,
|
||||||
"web-port" : 8080,
|
"web-port" : 8080,
|
||||||
"io-port" : 1337,
|
"io-port" : 1337,
|
||||||
|
|
|
@ -171,7 +171,7 @@ var Server = {
|
||||||
self.httpserv = self.app.listen(Server.cfg["web-port"],
|
self.httpserv = self.app.listen(Server.cfg["web-port"],
|
||||||
Server.cfg["express-host"]);
|
Server.cfg["express-host"]);
|
||||||
self.ioserv = express().listen(Server.cfg["io-port"],
|
self.ioserv = express().listen(Server.cfg["io-port"],
|
||||||
Server.cfg["express-host"]);
|
Server.cfg["io-host"]);
|
||||||
|
|
||||||
// init socket.io
|
// init socket.io
|
||||||
self.io = require("socket.io").listen(self.ioserv);
|
self.io = require("socket.io").listen(self.ioserv);
|
||||||
|
|
Loading…
Reference in New Issue