Skip to content

Commit

Permalink
Update keepalive timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
simensma-fresh committed Nov 15, 2023
1 parent aa5ab46 commit 573cd5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/minespace-web/runner/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ app.use(`/`, staticServe);
app.use(`*`, staticServe);

const server = app.listen(PORT, "0.0.0.0", () => console.log("Server running"));
server.keepAliveTimeout = 10;
server.headersTimeout = 15;
server.keepAliveTimeout = 15 * 1000;
server.headersTimeout = 20 * 1000;

0 comments on commit 573cd5e

Please sign in to comment.