Add io.domain config key

This commit is contained in:
calzoneman 2014-02-26 10:57:49 -06:00
parent 93d5980f05
commit 1e2a158ae6
3 changed files with 9 additions and 2 deletions

View file

@ -40,6 +40,12 @@ html-template:
# Socket.IO server details
io:
# In most cases this will be the same as the http.domain.
# However, if your HTTP traffic is going through a proxy (e.g. cloudflare)
# you will want to set up a passthrough domain for socket.io.
# If the root of this domain is not the same as the root of your HTTP domain
# (or HTTPS if SSL is enabled), logins won't work.
domain: 'http://localhost'
port: 1337
# limit the number of concurrent socket connections per IP address
ip-connection-limit: 10

View file

@ -39,6 +39,7 @@ var defaults = {
certfile: "localhost.cert"
},
io: {
domain: "http://localhost",
port: 1337,
"ip-connection-limit": 10
},

View file

@ -131,7 +131,7 @@ function handleChannel(req, res) {
if (req.secure) {
sio = Config.get("https.domain") + ":" + Config.get("https.port");
} else {
sio = Config.get("http.domain") + ":" + Config.get("io.port");
sio = Config.get("io.domain") + ":" + Config.get("io.port");
}
sio += "/socket.io/socket.io.js";
@ -178,7 +178,7 @@ function handleSocketConfig(req, res) {
res.type("application/javascript");
var io_url = Config.get("http.domain") + ":" + Config.get("io.port");
var io_url = Config.get("io.domain") + ":" + Config.get("io.port");
var web_url = Config.get("http.domain") + ":" + Config.get("http.port");
var ssl_url = Config.get("https.domain") + ":" + Config.get("https.port");
res.send("var IO_URL='"+io_url+"',WEB_URL='"+web_url+"',SSL_URL='" + ssl_url +