change connection idle timeout
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 40s

This commit is contained in:
Lee 2024-10-27 14:03:41 +00:00
parent 28e8561020
commit b889eee7ff

@ -172,4 +172,7 @@ app.onStart(async () => {
}
});
app.listen(8080);
app.listen({
port: 8080,
idleTimeout: 120, // 2 minutes
});