【问题标题】:Nginx - Downloading PHP instead of executingNginx - 下载 PHP 而不是执行
【发布时间】:2014-04-03 03:47:54
【问题描述】:

我正在使用 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;
#}
}

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

【问题讨论】:

  • 你安装php-fpm了吗?
  • 不,您认为这会自行解决我的问题吗?或者我还需要对我的 cfg 进行更改吗? @iamsleepy
  • 刚刚安装了 php-fpm 还是有同样的问题
  • 尝试检查配置。 php是否开启。
  • 在 nginx 配置文件中。尝试找到location ~ \.php$ 部分并取消注释。

标签: php mysql nginx


【解决方案1】:

您必须取消注释这部分:

#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

【讨论】:

  • 谢谢,我刚试过这个并重新启动了 nginx,文件不再下载,但现在我得到一个错误页面(您正在寻找的页面目前不可用)有什么想法吗? @iamsleepy
  • 如果你的意思是'#root html; ' 好吧,我所有的 html 和 .php 文件都在 html 文件夹中。
  • 我已经编辑了答案。请注意配置文件中对fastcgi_pass 的更改。我用它来为我的服务器进行初始设置。试试看是否有帮助。
  • 我的服务器上没有这些路径
  • /var/run 文件夹中有什么类似的吗?
猜你喜欢
  • 2011-12-30
  • 1970-01-01
  • 1970-01-01
  • 2017-06-05
  • 2014-10-17
  • 2019-07-21
  • 2014-02-01
  • 1970-01-01
  • 2019-08-09
相关资源
最近更新 更多