Merge pull request #563 from isocolsky/keep-alive

Set keep-alive to 300s
This commit is contained in:
Matias Alejo Garcia 2016-08-15 17:14:37 -03:00 committed by GitHub
commit b733475134
1 changed files with 1 additions and 1 deletions

2
bws.js
View File

@ -45,7 +45,7 @@ var start = function(cb) {
var server = config.https ? serverModule.createServer(serverOpts, expressApp.app) : serverModule.Server(expressApp.app);
server.on('connection', function(socket) {
socket.setTimeout(30 * 1000);
socket.setTimeout(300 * 1000);
})
async.parallel([