11

我在 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 视为文本而不是执行结果。我应该去哪里进行故障排除?

4

3 回答 3

7

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

在该块中,您有 2 个fastcgi_pass,一个带有端口(9000),另一个带有 unix 套接字,您不能同时拥有两者,但是由于您已使用 fastcgi 标记了您的问题,所以我假设您使用的是 fastcgi,尝试评论这一行

#fastcgi_pass unix:/var/run/php5-fpm.sock;
于 2013-07-22T01:51:42.917 回答
2

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

Nginx 通常会根据扩展名设置一个默认的 Content-Type 标头。这是使用types指令完成的,我在上面没有看到,因此您可能希望在那里检查您的设置以确认 php 扩展名已映射到 text/html。在您的应用程序中显式设置Content-Type标题也可能会有所帮助。

于 2013-07-22T02:05:08.643 回答
0

我可以通过更改来更新我的 nginx vhost 来解决这个问题

default_type application/octet-stream;

default_type text/html;

于 2014-08-13T15:56:01.487 回答