Pode não ser possível desativá-lo, mas uma solução viável é aumentar o tempo de execução. Em um site tutorial nginx , foi escrito:
If you want to increase time-limit for all-sites on your server, you can edit main
nginx.conf
file:
vim /etc/nginx/nginx.conf
Add following in http{..} section
http {
fastcgi_read_timeout 300;
}
e recarregar o nginx 'config:
sudo service nginx reload
Eu usei um valor bastante grande que é improvável de acontecer, ou seja, 999999
. (Configurar o valor para 0
resulta em um tempo limite de gateway imediato.)