after linux and nginx update php not working -
i working nginx 1.19 version. , installed php5-fpm on linux server. nginx php configurationlike this:
location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; }
after update nginx version 1.6.2 , upgrade linux, php files not working. php requests returning white pages, no errors.
(i can not find php-fpm.sock in /var/run folder)
how can restart php?
replace
include fastcgi_params;
with
include fastcgi.conf;
linux nginx
No comments:
Post a Comment