[Resolvido] Erro HTTP 504 Gateway timeout (Tempo esgotado do gateway) imprimir

  • 5

Em sistemas Linux, podemos corrigir esse erro via SSH
1° Passo:
- Editar o arquivo: sshd_config
#nano /etc/ssh/sshd_config

Editar as seguintes linhas e mudar os valores:
ClientAliveInterval 30
TCPKeepAlive yes
ClientAliveCountMax 99999


Finalizando, é só reiniciar o SSH
Comando:
#service sshd restart


2° Passo:
- Aumetar o limite de execução no php.ini
#nano /etc/php.ini

Dê um F6 e pesquise por: max_execution_time

Aumentar de 30 para 9000.
;Maximum execution time of each script, in seconds
;http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time
max_execution_time = 900


Faça o mesmo procedimento para:
max_input_time = 60 (mude de 60 para 900)

Dê um novo restart no Apache.

Esta resposta lhe foi útil?

« Retornar