Website very slow and even timing out (error 520 and 524) but low server load

Hi there,

An HTTP Error 524 indicates a timeout after establishing a TCP connection and waiting for a response from your origin.

If your origin server does not return any data after 100 seconds, we will close the connection and serve a 524 error. This can happen if your server is simply taking too long because it has too much work to do - e.g. a large data query, or because the server is struggling for resources and cannot return any data in time. We recommend that you implement status polling of large HTTP processes to avoid hitting this error.

Here are the options we’d suggest to work around this:

  1. Run the scripts via a grey-clouded subdomain.

  2. Change the script so that it kicks off a long-running background process, and quickly returns a status which the browser can poll until the background process has completed, at which point the full response can be returned. This is the way most people do this type of activity these days - as keeping HTTP connections open for a long time is unreliable and can also be very taxing.