Views:

To fix the issue, increase the timeout on NGINX proxy by adding/changing the following parameters under HTTP body:

 
Before adding these parameters, it is suggested to test it on a non-production environment first. Please evaluate carefully if you can add these changes on your production. It is recommended to contact NGINX support for verification.
 
keepalive_timeout        300;
proxy_connect_timeout    300;
proxy_read_timeout       300;
proxy_send_timeout       300;
client_body_timeout      3600s;

Make sure as well to reload NGINX proxy configuration, using the following command:

nginx -s reload