简体   繁体   English

Nginx-下载PHP而不是执行

[英]Nginx - Downloading PHP instead of executing

I am using CentOS and I have two web pages which im using for a piece of work. 我正在使用CentOS,我有两个网页正在使用中。 The first is a .html which has a form which uses a .php script to send data to my mySQL database, this works fine. 第一个是.html,它具有使用.php脚本将数据发送到mySQL数据库的形式,这很好用。 The second is just a .php page which is supposed to display the contents of the table within the database. 第二个只是一个.php页面,该页面应该显示数据库中表的内容。 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 conf与我的看起来很不一样(我认为那是问题所在)。

My nginx config (Im using the default one created, I havent added anything to it): 我的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;
}

and: 和:

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

Edit the file /var/run/php5-fpm.sock and change listen = 127.0.0.1:9000 to listen = /var/run/php5-fpm.sock . 编辑文件/var/run/php5-fpm.sock ,并将listen = 127.0.0.1:9000更改为listen = /var/run/php5-fpm.sock

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM