Bad gateway 504 timeuot nginx
Столкнувшись с этой проблемой и перелопатив кучу статей в гугле, несмог решить проблему .
Но благодаря помощи
https://connect.smartliving.ru/profile/2594/blog.h... в телеге @newz20
https://connect.smartliving.ru/profile/5689/blog.h... в телеге @SmoKE_xD
в телеге @solalex
https://connect.smartliving.ru/profile/4398/blog.h... в телеге @londonm
получилось вроде как решить проблему!!!
Если есть еще инфа , допонение к статье приветствуется!
Открываем файл default по пути /etc/nginx/sites-available/default
и правим в этом куске кода добавля строчку:
fastcgi_read_timeout 300;
# pass PHP scripts to FastCGI server
#
location ~ [^/]\.php(/|$) {
include snippets/fastcgi-php.conf;
fastcgi_read_timeout 300; // вот этого изначально нет , с цифрами играемся ( но аккуратно) !!!
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
Нужно понимать конечно суть проблемы и одной строчкой это не решить, но все же!
https://unixhelp.org/incrase-lead-time-of-php-scri...
https://ru.hostings.info/schools/vse-o-fayle-phpin...
https://losst.ru/nastrojka-fajla-php-ini
https://www.internet-technologies.ru/articles/php-...
http://www.php.su/articles/?cat=prepare&page=001
Киев, Украина