Browse Source

set keep-alive timeout

activeAddress
Ivan Socolsky 9 years ago
parent
commit
b70b3cd726
No known key found for this signature in database GPG Key ID: FAECE6A05FAA4F56
  1. 5
      bws.js

5
bws.js

@ -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) {

Loading…
Cancel
Save