Nginx将.php文件作为下载文件,而不是执行它们


151

我正在以水滴形式安装网站(数字海洋)。我在使用PHP正确安装NGINX时遇到问题。我做了一个教程https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-14-04,但是当我尝试运行一些.php文件正在下载...例如,http://5.101.99.123/info.php它正在工作,但是...如果我进入主目录,http://5.101.99.123它将下载我的index.php:/

任何想法?

-rw-r--r--  1 agitar_user www-data   418 Jul 31 18:27 index.php
-rw-r--r--  1 agitar_user www-data    21 Aug 31 11:20 info.php

我的/ etc / nginx / sites-available / default

server {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;

        root /var/www/html;
        index index.html index.htm index.php;

        # Make site accessible from http://localhost/
        server_name agitarycompartir.com;

               location ~ \.php$ {
                    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    #               # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    #
    #               # With php5-cgi alone:
    #               fastcgi_pass 127.0.0.1:9000;
    #               # With php5-fpm:
                    fastcgi_pass unix:/var/run/php5-fpm.sock;
                    fastcgi_index index.php;
                    include fastcgi_params;
            }


              location / {

                    try_files $uri $uri/ =404;
                    # Uncomment to enable naxsi on this location
                    # include /etc/nginx/naxsi.rules
            }

...评论其他“位置”(#)


4
是的...您没有使用Nginx正确设置PHP-FPM。由于您没有向我们显示任何配置,因此我们只能告诉您这些。
布拉德

您要查看哪个文件?感谢@Brad
Apeiron

无论您将配置放入哪个文件(或多个文件)。相关部分是...在Nginx配置中设置PHP-FPM的位置。
布拉德(Brad)

2
经过一个小时的谷歌搜索后发现此askubuntu.com/a/601996/89455-如果在尝试清除缓存之前配置错误,请在这里工作!
tm_lv '16

Answers:


131

试试这个:

  1. 编辑 /etc/nginx/sites-available/default

  2. 取消注释两个侦听行,以使nginx在端口80 IPv4和IPv6上侦听。

    listen   80; ## listen for ipv4; this line is default and implied
    listen   [::]:80 default_server ipv6only=on; ## listen for ipv6
  3. 离开server_name独自

    # Make site accessible (...)
    server_name localhost;
  4. 添加index.phpindex

    root /usr/share/nginx/www;
    index index.php index.html index.htm;
  5. 取消评论 location ~ \.php$ {}

    # pass the PHP scripts to FastCGI server listening on (...)
    #
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    
            # With php5-cgi alone:
            #fastcgi_pass 127.0.0.1:9000;
            # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }
  6. 编辑/etc/php5/fpm/php.ini并确保cgi.fix_pathinfo设置为0

  7. 重新启动Nginx和php5-fpm sudo service nginx restart && sudo service php5-fpm restart


我一周前才刚刚开始使用Linux,所以我真的希望能在此方面为您提供帮助。我正在使用nano文本编辑器来编辑文件。如果没有,请运行apt-get install nano。Google对它了解更多。


14
service nginx restart && service php5-fpm restart
公爵

8
nginx -s reload
公爵

2
与PHP7-fpm是:服务php7.0-fpm重新启动
Alex

1
@Joy,尝试了您的建议,但没有成功。不得不使用fastcgi_pass unix:/run/php/php7.0-fpm.sock;
jdstaerk

1
对于php7.2:unix:/var/run/php5-fpm.sock;转换为unix:/var/run/php/php7.2-fpm.sock;(一个嵌套/php
Oleg Reym

49

您需要将此添加到/ etc / nginx / sites-enabled / default才能在Nginx Server上执行php文件:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

什么是SCRIPT_FILENAME?
mp3por

2
如果您使用的是PHP 7.0,那么这是正确的:fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
Andrew Fox

1
@ AndrewFox-我的文件名php7.0-fpm.pid不是php7.0-fpm.sock/var/run/php/ 这意味着什么?
vsync

@vsync尝试一下。sudo service php7.0-fpm restart。如果缺少袜子,则表明正在运行php进程。
zhisme

1
@Pathros-我发现wordpress(以我为例)在另一个文件夹中有服务器配置文件,这些文件需要编辑/etc/nginx/conf.d/wordpress_https.conf
vsync

43

我有类似的问题,该问题可以通过清空浏览器缓存来解决(在其他浏览器上也可以正常工作)。


5
我认为重新启动和隐身模式对我有所帮助。多谢我们的无能为力。
Swapnil Mhaske'3

4
非常感谢。您保存了我的一天)也为隐身模式+1!
艾迪(Eddie)

3
经过数小时尝试了许多其他建议的解决方案,这对我来说是成功的。
克莱格

1
我的网站可以在IE和chrome上运行,而在mozilla中却无法执行该网站,这令我感到奇怪。这是mozilla的缓存错误。
维克多·乔拉斯

3
你节省了我的时间
阿米尔·卡夫塔里

12

更新nginx配置/ etc / nginx / sites-available / default或您的配置文件

如果您使用的是php7,请使用此

    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;      
    }

如果您使用的是php5,请使用此

    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

请访问此处以获取完整详细信息。


我试过这对我不起作用,我正在使用ubuntu 14.04和php 7.0如何解决此问题?
Kishore

上方的共享链接“完整细节”已损坏
Kishore

什么意思include snippets/fastcgi-php.conf;
Timo

9

我在上面看到了很多解决方案,许多解决方案对我来说都是正确的,但是我不明白他们在做什么,并且担心只复制粘贴代码,尤其是fastcgi。这是我的2美分

  1. nginx是Web服务器(而不是应用程序服务器),因此,它只能提供静态页面。
  2. 每当我们尝试渲染/返回.php文件(例如index.php)时,nginx都不知道该怎么做,因为它根本无法理解.php文件(或者为此,除了少数几个扩展名之外)例如.html,.js等都是静态文件)
  3. 因此,为了运行其他类型的文件,我们需要位于nginx和应用程序(此处为php应用程序)之间的文件。这是通用网关接口(CGI)出现的地方。它是管理此通信的软件。CGI可以用任何可能的语言Python(uWSGI),PHP(FPM)甚至C来实现。FastCGI基本上是CGI的升级版本,比CGI快得多。

对于某些服务器(例如Apache),内置了对PHP的解释支持,因此不需要CGI。

这个数字海洋链接,很好地解释了安装FPM的步骤,并且我没有编写解决php文件下载而不是渲染的问题所需的步骤,因为其他答案我都很好。


很好的解释者。谢谢。
乔恩,

1
nginx是一个Web SERVER,而不是浏览器,请修复它。
Geeocode

8

我遇到了同样的问题,没有一个答案可以解决问题。

我跑了:

sudo nginx -t

在/ etc / nginx / sites-available / default中测试配置文件。

它给了我这些错误:

nginx: [emerg] unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:115
nginx: configuration file /etc/nginx/nginx.conf test failed

所以我进入了配置文件,在最后一行

#}

我没有评论,再次运行测试命令,它起作用了


除了解决问题的建议外,还包括测试命令语法很不错。
灰胡子

7

这对我有用。

1)MyApp文件

vi / etc / nginx / sites-available / myApp

server {
  listen 80;
  listen [::]:80;

  root /var/www/myApp;
  index index.php index.html index.htm;

  location ~ \.php$ {
      try_files $uri =404;
      fastcgi_split_path_info ^(.+\.php)(/.+)$;
      fastcgi_pass unix:/run/php/php7.0-fpm.sock;
      fastcgi_index index.php;
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
          include fastcgi_params;
      }
}

PHP5用户

更改

fastcgi_pass unix:/run/php/php7.0-fpm.sock;

fastcgi_pass unix:/var/run/php5-fpm.sock;

2)配置cgi.fix_pathinfo

将cgi.fix_pathinfo设置为0

位置:

PHP5 /etc/php5/fpm/php.ini

PHP7 /etc/php/7.0/fpm/php.ini


3)重启服务

FPM

php5 sudo service php5-fpm restart

php7 sudo service php7.0-fpm restart

NGINX

sudo service nginx restart

fastcgi_pass Unix:/run/php/php7.0-fpm.sock; 是不正确的。它应该是/var/run/php/php7.0-fpm.sock; 并且您需要使用已安装的版本更新指定的php版本,例如:/var/run/php/php7.2-fpm.sock;
VanAlbert

4

对我来说,它有助于?$query_string在/index.php的末尾添加内容,如下所示:

location / {
        try_files $uri $uri/ /index.php?$query_string;
}

3

如果任何建议的答案均无效,请尝试以下操作:

1.在etc / php5 / fpm / pool.d中修复www.conf:

listen = 127.0.0.1:9000;(delete all line contain listen= )

2.修复nginx.conf在usr / local / nginx / conf中:

remove server block server{} (if exist) in block html{} because we use server{} in default (config file in etc/nginx/site-available) which was included in nginx.conf.

3.修复etc / nginx / site-available中的默认文件

location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; }

4.重启nginx服务

sudo服务nginx重启

5.重启php服务

服务php5-fpm重新启动

6.享受

在/ usr / share / nginx / html中创建任何php文件,然后在“ server_name / file_name.php”中运行(server_name取决于您的配置,通常是localhost,file_name.php是在/ usr / share / nginx中创建的文件名/ html)。

我正在使用Ubuntu 14.04


2

上面的答案似乎对我达成的解决方案太多了。这是我的文件的样子:

/ etc / nginx / sites-available / default

location ~ \.php$ {
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}

希望这对某些在星期日下午感到沮丧的人有所帮助(c:


2
server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/html;
    index index.php index.html index.htm;

    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php7.2-fpm.sock;
    }
}

上面的代码片段在php7.2的情况下对我有用


1

对于任何与PHP 7有相同问题的人,这是我为使Nginx在CentOS 7中正确执行php文件所做的工作,以便在任何人遇到相同问题的情况下发布:

  • Digital Ocean上逐步遵循本文档。

  • 打开/etc/nginx/conf.d/default.conf(默认情况下,我没有启用站点,也没有站点,您可以进行相应的编辑)。

  • 如下编辑location参数:

default.conf

location ~ \.php$ {
    try_files $uri =404;
    #fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;

    #instruct nginx execute php7 files instead download them :D
    fastcgi_pass unix:/var/run/php-fpm/www.sock;

    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}
  • 重新启动Nginx和PHP服务sudo systemctl restart php-fpm以及sudo systemctl restart nginx

  • 最后但最重要的是,清除浏览器缓存或在incognito (Chrome)或中运行Private Browsing (Firefox)等。

希望这个有用和快乐的编码


1

我的解决方案是添加

    location ~ \.php$ {
    try_files $uri =404;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;

例如到我的自定义配置文件 etc/nginx/sites-available/example.com.conf

添加/etc/nginx/sites-available/default对我不起作用。


1

我不使用/etc/nginx/sites-available/default我的情况是使用其他服务器块配置文件(例如example.com),并且能够解决此问题的唯一方法是删除默认的服务器块配置文件符号链接:

$ rm /etc/nginx/sites-enabled/default

然后重新加载Nginx:

$ sudo systemctl reload nginx

1

我现在用以下代码(更改您的IP)解决了我的问题:

location / {
access_log off;
    log_not_found  off;
    client_max_body_size    2000m;
    client_body_buffer_size 512k;
    proxy_buffering on;
    proxy_send_timeout 300s;
    proxy_read_timeout 300s;
    proxy_buffer_size 64k;
    proxy_buffers 32 64k;
    proxy_busy_buffers_size 128k;
    proxy_temp_file_write_size 128k;
    proxy_connect_timeout 300s;
    proxy_http_version 1.1;
    proxy_set_header Range "";
    proxy_pass   https://123.123.123.123:444;
    proxy_set_header   Host   $host;
    proxy_set_header   X-Real-IP  $remote_addr;
    proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header   X-Forwarded-Proto $scheme;
    proxy_redirect     off;
}

0

在Ubuntu 16.04和php7下对我有用的是删除此行

fastcgi_split_path_info ^(.+\.php)(/.+)$;

之后,它停止下载php文件。


0

取消注释/ etc / nginx / sites-available / default中的.php位置

须藤vi / etc / nginx / sites-available / default:

location ~ \.php$ {
            include snippets/fastcgi-php.conf;

            # With php5-cgi alone:
    #       fastcgi_pass 127.0.0.1:9000;
            # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
    }

0

如果没有其他帮助。也许之前您安装了带有info.php测试文件的apache2。只需清除本地主机的应用程序数据(缓存,cookie)即可。


0

检查您的nginx配置文件扩展名为* .conf。
例如:/etc/nginx/conf.d/myfoo.conf

我有同样的情况。将我的配置文件从myfoo重命名为myfoo.conf之后,它已修复。重命名后,不要忘记重启nginx。


0

首先,您必须Remove cache在浏览器中

然后打开终端并运行以下命令:

sudo apt-get install php-gettext
sudo nano /etc/nginx/sites-available/default

然后在default文件中添加以下代码:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    server_name localhost;

    location / {
        try_files $uri $uri/ =404;
    }

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

如果有任何不匹配,只需更正并通过以下命令从终端重启Nginx

sudo systemctl重启nginx

然后转到浏览器并享受...


0

对我来说是这样的:fastcgi_pass unix:/var/run/php5-fpm.sock;

只能是:fastcgi_pass unix:/run/php5-fpm.sock;


0

我正下定决心要解决此问题,对我来说,问题是Cloudflare缓存了php文件,并一直让我下载它。

对我来说,解决方法是清除Cloudflare上的缓存。


也许您想告诉我们如何?
Thorsten Staerk

0

我遇到了同样的问题,解决了这个问题:如果您的CSS没有加载问题,那么此服务器块也将这个块放在其他位置块之上。我将其添加到站点可用的conf文件中。

location ~ [^/]\.php(/|$) {
fastcgi_split_path_info  ^(.+\.php)(/.+)$;
fastcgi_index            index.php;
fastcgi_pass             unix:/var/run/php/php7.3-fpm.sock;
include                  fastcgi_params;
fastcgi_param   PATH_INFO       $fastcgi_path_info;
fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

0

因此,在我的情况下,这就是重写规则最终起作用的地方,我的罪魁祸首
如下更改了nginx重写规则。

   location /vendors { rewrite ^/vendors/?$ /vendors.php break; } 

变成...

  location /vendors { rewrite ^/vendors/?$ /vendors.php last; }

显然,如果没有last关键字,该请求就不会重新启动,因此它永远不会到达.php位置段,因此被简单地解释为下载-



0

还有一件事要检查:如果您设置PHP 之前已经设置了HTTPS访问权限-我使用了certbot-您将需要在/ etc / nginx / sites-available / default中进行两次更改,因为将会有两次更改服务器块(一个监听端口80,另一个监听端口443)。

(我主要是为电子邮件设置此服务器,而在我第一次安装nginx时,PHP并没有使用它,只是为了更轻松地运行certbot。)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.