Instalei o Nginx e o php7.1-fpm no Ubuntu 16.04. Estava funcionando perfeitamente bem. Eu comecei a receber 504 Gateway Time-out
error.
Quando eu verifiquei o log do Nginx, recebi esses erros:
*1 upstream timed out (110: Connection timed out) while reading response header from upstream, client: xxx.xxx.xxx.xxx, server: server.name,, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.1-fpm.sock", host: "example.com", referrer: "http://example.com/"
Aqui está o meu arquivo host virtual
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name example.com;
root /var/www/example/public;
index index.html index.htm index.nginx-debian.html index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
Por favor, oriente por que estou recebendo este erro. Como posso resolver isso?
Tags nginx ubuntu ubuntu-16.04