我已经在 nginx.conf.default 文件中尝试了多种配置,如下所述:https://stackoverflow.com/questions/25591040/nginx-serves-php-files-as-downloads-instead-of-executing-them
以下是我的 nginx.conf.default 的样子:
location ~ \.php$ {
root html;
#fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.pid
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
其他帖子会说我需要包含这个:
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
但我显然没有那个文件也没有那个完整路径。/var/run 只有 php-fpm。我正在使用 Centos 7.7.1908 核心