Properly set pusher path in config

This commit is contained in:
Piotr Sarnacki 2016-01-15 12:36:45 +01:00
parent 5ddbde82f1
commit e1a2f42030

View File

@ -196,8 +196,8 @@ if (ENV.pro) {
return [
[
":def", "ws_options", {
hostUnencrypted: config.wsHost + ":" + config.wsPort + (ENV.pusher.path && ("/" + config.pusher.path) || ''),
hostEncrypted: config.wsHost + ":" + config.wssPort + (ENV.pusher.path && ("/" + config.pusher.path) || ''),
hostUnencrypted: config.wsHost + ":" + config.wsPort + (ENV.pusher.path && ("/" + ENV.pusher.path) || ''),
hostEncrypted: config.wsHost + ":" + config.wssPort + (ENV.pusher.path && ("/" + ENV.pusher.path) || ''),
path: config.path
}
], [