Nodejs and express server closes connection after 2 minutes

前端 未结 3 1049
[愿得一人]
[愿得一人] 2021-01-02 07:29

Im using Express 4.X and node js 0.12.

One of my routes is for file uploading and processing and for some of the files the upload and process takes more than the 2 m

3条回答
  •  [愿得一人]
    2021-01-02 08:12

    how about:

    server.on('connection', function(socket) {
      socket.setTimeout(5 * 60 * 1000);
      socket.once('timeout', function() {
        process.nextTick(socket.destroy);
      });
    });
    

提交回复
热议问题