首页 > 解决方案 > 如何从 PHP-FPM 获取此 NGINX 203 错误的其余部分

问题描述

我不断从 NGINX 收到 203 错误,并且可以使用一些帮助来解决它。当我访问http://localhosthttp://localhost/index ... 等时出现此错误。该站点运行良好。

[error] 60#60: *203 FastCGI sent in stderr: "PHP message:" while reading response header from upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.2-fpm.sock:", host: "localhost"
2019/10/25 13:34:35 [error] 60#60: *203 FastCGI sent in stderr: "PHP message:" while reading response header from upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.2-fpm.sock:", host: "localhost", referrer: "http://localhost/"

会议:

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

        root /mnt/c/Users/me/src/site;

        # Add index.php to the list if you are using PHP
        index index.php index.html index.htm index.nginx-debian.html;


        server_name _;


location / {
                try_files $uri $uri/ /index.php$is_args$args;
        }

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

                # Make sure unix socket path matches PHP-FPM configured path above
                fastcgi_pass unix:/run/php/php7.2-fpm.sock;

                # Prevent ERR_INCOMPLETE_CHUNKED_ENCODING when browser hangs on response
                fastcgi_buffering off;
        }

}

我假设它可能与此有关: Strange Nginx behavior with trailing slashes。但我并不完全明白。

标签: phpnginxfpm

解决方案


HTTP 代理位于客户端和服务器(源)之间。在某些情况下,HTTP 代理可能会在响应到达客户端之前对其进行更改。

所以,你真的很确定你得到的 203 错误来自你的 nginx 服务器吗?


推荐阅读