Author Topic: Nginx & Varnish & Apache + php-fpm - Increase timeout (How to?)  (Read 15458 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Nginx & Varnish & Apache + php-fpm - Increase timeout (How to?)
« on: November 09, 2019, 09:05:23 AM »
Trying to increase php script time more than 1 minute:

/etc/nginx/proxy.inc
proxy_connect_timeout 240s;
proxy_send_timeout 600;
proxy_read_timeout 600;

php.ini
max_execution_time 300
default_socket_timeout 600

But i'm keep receiving 504 Gateway timeout...
What extra setting i should change?