php - Nginx - 下载 PHP 而不是执行

标签 php mysql nginx

我正在使用 CentOS,并且我有两个网页用于一项工作。第一个是 .html,它有一个表单,使用 .php 脚本将数据发送到我的 mySQL 数据库,这工作正常。第二个只是一个 .php 页面,应该显示数据库中表的内容。问题是,我的浏览器下载文件而不是显示它。我见过一些与此类似的问题,但他们的 nginx 配置看起来与我的非常不同(我认为这就是问题所在)。

我的 nginx 配置(我使用创建的默认配置,我没有添加任何内容):

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
worker_connections  1024;
}


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

log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile        on;
#tcp_nopush     on;

keepalive_timeout  65;

#gzip  on;

include /etc/nginx/conf.d/*.conf;
}

和:

server {
listen       80;
server_name  localhost;

#charset koi8-r;
#access_log  /var/log/nginx/log/host.access.log  main;

location / {
    root   /usr/share/nginx/html;
    index  index.html index.htm;
}

#error_page  404              /404.html;

# redirect server error pages to the static page /50x.html
#
error_page   500 502 503 504  /50x.html;
location = /50x.html {
    root   /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
#    proxy_pass   http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
#    root           html;
#    fastcgi_pass   127.0.0.1:9000;
#    fastcgi_index  index.php;
#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
#    include        fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#    deny  all;
#}
}

我正在寻找应该添加哪些行以及在哪里尝试解决我的问题。感谢您抽出时间。

最佳答案

您必须取消注释这部分:

#location ~ \.php$ {
#    root           html;
#    fastcgi_pass   unix:/var/run/php5-fpm.sock;
#    fastcgi_index  index.php;
#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
#    include        fastcgi_params;
#}

编辑文件/var/run/php5-fpm.sock并将listen = 127.0.0.1:9000更改为listen =/var/run/php5-fpm.sock.

并允许服务器仅处理确切的文件路径,编辑/etc/php5/fpm/php.ini并确保cgi.fix_pathinfo=0

关于php - Nginx - 下载 PHP 而不是执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22819813/

相关文章:

php - Doxygen 在记录 PHP 时出现奇怪的问题

javascript - 如何在不在网站上显示的情况下从 html 向 php 赋予特殊字符?

mysql - Spark 存在错误时丢弃 Hive 表

具有某种连接类型的 MySQL 查询?没有把握

php - 请求。错误 : Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET/"

php - PHP 属性与文档 block 注释有何不同?

nginx - 如何创建使用SSL和NGINX为自己的容器服务的Kubernetes集群

nginx - 设置 nginx post 请求的响应 header

php - 如果服务器有很多客户端,最后一个增量 ID 是否可能会与另一个插入搞乱?

php-fpm 和 nginx : How to set display_errors = on but also get HTTP 500?