increase server keep alive timeout to 65s

This commit is contained in:
Jesse D. McDonald 2020-04-28 14:38:50 -05:00
parent d56b2d3187
commit a8f9074f48
1 changed files with 1 additions and 0 deletions

View File

@ -445,4 +445,5 @@ if (process.env.HTTPS_KEY) {
config.server = require('http').createServer(app);
}
config.server.keepAliveTimeout = 65 * 1000;
config.server.listen(config.port);