Nginx-下载PHP而不是执行 [英] Nginx - Downloading PHP instead of executing

查看:85
本文介绍了Nginx-下载PHP而不是执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用CentOS,我有两个Web页面,它们用于工作.第一个是.html,它具有使用.php脚本将数据发送到mySQL数据库的形式,这很好用.第二个只是一个.php页面,该页面应该显示数据库中表的内容.问题是,我的浏览器下载了文件而不显示了文件.我已经看到了一些与此类似的问题,但是它们的nginx conf与我的看起来很不一样(我认为那是问题所在).

I am using CentOS and I have two web pages which im using for a piece of work. The first is a .html which has a form which uses a .php script to send data to my mySQL database, this works fine. The second is just a .php page which is supposed to display the contents of the table within the database. The problem is, my browser downloads the file instead of displaying it. I have seen a few questions similar to this but their nginx confs look very different to mine (and i think thats where the problem lies).

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

My nginx config (Im using the default one created, I havent added anything to it):

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;
#}
}

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

Im looking for which lines I should add and where to try and fix my problem. Thanks for your time.

推荐答案

您必须取消注释此部分:

You must uncomment this part:

#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.

Edit the file /var/run/php5-fpm.sock and change listen = 127.0.0.1:9000 to listen = /var/run/php5-fpm.sock.

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

And to allow the server to only process the exact file path edit /etc/php5/fpm/php.ini and make sure cgi.fix_pathinfo=0.

这篇关于Nginx-下载PHP而不是执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆