erro de gateway Nginx php-fpm 504

1

Depois de horas de pesquisa e depuração, desisto!

Existem milhares de perguntas e artigos sobre processos PHP de longa execução, mas nenhum deles resolveu meu problema.

Eu tenho um script PHP com os seguintes códigos:

$cur = 0; 
    // Second, loop for $timeout seconds checking if process is running 
    while( $cur < 31 ) { 
        sleep(1); 
        $cur += 1; 

       echo "\n ---- $cur ------ \n";
    }

Pretende-se simplesmente executar por 31 segundos.

Eu tenho um Nginx, PHP configurado como fastcgi no servidor debian.

eu configurei     max_execution_time = 600

Em

/etc/php5/fpm/php.ini

Eu até o configurei em

/etc/php5/cli/php.ini

Também defina

request_terminate_timeout = 600

em     /etc/php5/fpm/pool.d/www.conf

Também fiz essas alterações na seção http do nginx.conf

client_header_timeout   600;
client_body_timeout     600;
send_timeout           600;

fastcgi_read_timeout    600;
fastcgi_send_timeout    600;
client_max_body_size    20m;
fastcgi_buffers         8 128k;
fastcgi_buffer_size     128k;

E coloque as diretivas dentro da seção do servidor. e estas diretivas dentro da seção de localização da configuração do nginx

send_timeout           600;

fastcgi_read_timeout    600;
fastcgi_send_timeout    600;
client_max_body_size    20m;
fastcgi_buffers         8 128k;
fastcgi_buffer_size     128k;

Mas ainda encontro o erro de tempo limite do gateway no navegador! (E sim! Eu reiniciei o php-fpm e o nginx milhares de vezes)

Vocês tem alguma ideia?

Aqui está o meu nginx.conf

# cat /etc/nginx/nginx.conf 
user www-data;
worker_processes 4;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon;

    gzip_min_length 256;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

Aqui está o /etc/nginx/conf.d/increase-timeout.conf

client_header_timeout   600;
client_body_timeout     600;
send_timeout           600;

fastcgi_read_timeout    600;
fastcgi_send_timeout    600;
client_max_body_size    20m;
fastcgi_buffers     8 128k;
fastcgi_buffer_size     128k;

E este é meu / etc / nginx / sites-enabled / mysite

server {
    listen   IP:80;# default_server;## listen for ipv4; this line is default and implied
    #listen   [::]:80 default ipv6only=on; ## listen for ipv6

    root /path/to/root;
    index index.html index.php index.htm;

    server_name DOMAIN; 

    access_log /var/log/nginx/mysite-access.log;
    error_log /var/log/nginx/mysite-error.log debug;


    client_header_timeout   600;
    client_body_timeout     600;
    send_timeout           600;

    fastcgi_read_timeout    600;
    fastcgi_send_timeout    600;
    client_max_body_size    20m;

    location / {

        if ($request_uri ~ ^/index.php.*$) {

            rewrite ^(.*)$ $1 last;
        }

        if ($request_filename = "index.html") {

            break;
        }

        if ($request_uri ~ .*php$) {

            set $test A;
        }

        if ($request_filename != "index.php" ) {

                    set $test "${test}B";
            }

        if ($test = "AB") {

            rewrite ^(.*)$ /index.html last;
        }
    }

    location ~ ^/index.php.*$ {

        fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
        set $path_info $fastcgi_path_info;
            fastcgi_param PATH_INFO $path_info;
        fastcgi_keep_conn       on;
                # With php5-fpm:
                fastcgi_pass unix:/var/run/php5-fpm.sock;

        send_timeout           600;

        client_max_body_size    20m;

        fastcgi_read_timeout    600;
        fastcgi_send_timeout    600;
        fastcgi_buffer_size             128k;
        fastcgi_buffers                 256 16k;
        fastcgi_busy_buffers_size       256k;
        fastcgi_temp_file_write_size    256k;

                fastcgi_index index.php;
                include fastcgi_params;
        }
}
    
por madz 12.08.2017 / 01:59

2 respostas

1

Tente dizer ao nginx para desativar o buffer de saída no tempo de execução dos scripts com:

header('X-Accel-Buffering: no');

Dito isto, tentei o seu exemplo com um proxy apache nginx e não tive outros problemas além de esperar que o script php terminasse antes de exibi-lo.

    
por 12.08.2017 / 03:47
0

Esse erro é do Nginx, não do PHP-FPM. Nginx está reclamando que não recebeu nada em 60 segundos, o tempo limite padrão. Você pode alterá-lo :

fastcgi_read_timeout 600s;
    
por 12.08.2017 / 11:10

Tags