Merge pull request #554 from isocolsky/keep-alive

Set keep-alive timeout
This commit is contained in:
Matias Alejo Garcia 2016-08-09 10:27:23 -03:00 committed by GitHub
commit 70e72f8307
1 changed files with 5 additions and 0 deletions

5
bws.js
View File

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