There's very little documentation and reasoning on how to handle and set http timeouts in express.
I think they can be set via:
req.connection.setTimeout(600000);
Update: I got this working to set it, confirmed.
But after this limit, the server comes back with "No data received". I tried this module express-timeout and it didn't work.
Ideas?