找不到文件nginx php-fpm

时间:2017-03-16 06:57:06

标签: php nginx

我已经在这里查看了这样的每个问题,并尝试应用所述的修复但没有成功。

我使用wordpress:4.7.3-php7.0-fpm-alpine泊坞窗图片,前面有一个单独的nginx容器。

当我卷曲wordpress时,我得到:

File not found.

当我检查wordpress容器日志时,我得到:

127.0.0.1 -  16/Mar/2017:06:26:24 +0000 "GET /index.php" 404
127.0.0.1 -  16/Mar/2017:06:31:27 +0000 "GET /index.php" 404
127.0.0.1 -  16/Mar/2017:06:32:16 +0000 "GET /index.php" 404
127.0.0.1 -  16/Mar/2017:06:37:17 +0000 "GET /index.php" 404
127.0.0.1 -  16/Mar/2017:06:39:09 +0000 "GET /index.php" 404

实际的nginx错误是:

2017/03/16 06:26:24 [error] 17#17: *1 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: 10.128.0.7, server: k8wp, request
: "GET / HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000"

我使用的是php 7

/var/www/html # php-fpm -v
PHP 7.0.16 (fpm-fcgi) (built: Mar  3 2017 23:07:56)
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
    with Zend OPcache v7.0.16, Copyright (c) 1999-2017, by Zend Technologies

我的nginx配置是

server {
    root /app;

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

    server_name _localhost;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_pass    127.0.0.1:9000;
            fastcgi_index   index.php;
            fastcgi_param   SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include         fastcgi_params;
    }
}

我以用户www-data

运行nginx
user www-data;

根据/usr/local/etc/php-fpm.d/www.conf,用户和群组已取消注释并设为www-data

3 个答案:

答案 0 :(得分:10)

该错误表示您的SCRIPT_FILENAME不正确。你的评论:

  

在wordpress容器中,它位于/var/www/html/index.php中   nginx容器在/ app

建议nginxphp-fpm看到不同的文档根目录。

在这种情况下,请使用:

fastcgi_param   SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;

答案 1 :(得分:2)

您可以尝试加入include snippets/fastcgi-php.conf;。它应该解决你的问题。

答案 2 :(得分:0)

我遇到的问题是我的wordpress安装在子目录中。因此,将会加载wordpress的/ blog /主索引,但是不会加载诸如/blog/wp-admin/这样的更深目录中的已发布博客条目或页面。

要解决此问题,我添加了以下代码段:

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

这实际上在"Location Strategies" of the nginx wordpress recipes page中有解释。