我的nginx + fastcgi配置下载php文件而不是执行它们

时间:2013-07-21 22:54:49

标签: nginx fastcgi

我在ubuntu 13.04上全新安装php5-fpm和nginx时使用此配置:

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/ /index.html;
    }

    location /doc/ {
            alias /usr/share/doc/;
            autoindex on;
            allow 127.0.0.1;
            allow ::1;
            deny all;
    }

    error_page 404 /404.html;

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

但是,我的网络浏览器将php视为文本而不是执行结果。我应该在哪里进行故障排除?

3 个答案:

答案 0 :(得分:7)

您的PHP代码正在直接显示,因为它没有被发送到php引擎,这意味着位置块正在匹配并且正在提供php文件,但是php文件不是由php块捕获,所以你的问题是在php块中。

在那个区块中你有2个fastcgi_pass,一个有一个端口(9000),另一个有一个unix套接字,你不能同时拥有它们,但是因为你已经标记了你的问题使用fastcgi所以我假设您正在使用fastcgi,请尝试评论此行

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

答案 1 :(得分:2)

听起来你收到了错误的Content-Type标头集。您可以使用各种工具进行检查。例如,在Chrome中打开开发人员工具“网络”标签,然后请求该页面。您将看到其中一列中返回的“内容类型”,您可以单击左列中的请求以查看完整的响应标头。我怀疑你会发现返回的标题是“text / plain”或“application / octet-stream”而不是text / html,这可能是你想要的。

Nginx通常根据扩展名设置默认的Content-Type标头。这是通过我在上面没有提到的types指令完成的,所以你可能希望在那里检查你的设置以确认php扩展被映射到text / html。在应用程序中明确设置Content-Type标题也可能有所帮助。

答案 2 :(得分:0)

我能够通过更改

来更新我的nginx vhost来解决这个问题

default_type application/octet-stream;

default_type text/html;