找不到文件nginx php-fpm

Jon*_*han 5 php nginx

我在这里查看了这样的每个问题并试图应用所述的修复但没有成功.

我正在使用wordpress:4.7.3-php7.0-fpm-alpinedocker镜像,前面有一个单独的nginx容器.

当我卷曲wordpress时,我得到:

File not found.
Run Code Online (Sandbox Code Playgroud)

当我检查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
Run Code Online (Sandbox Code Playgroud)

实际的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"
Run Code Online (Sandbox Code Playgroud)

我正在使用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
Run Code Online (Sandbox Code Playgroud)

我的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;
    }
}
Run Code Online (Sandbox Code Playgroud)

我正在以用户身份运行nginx www-data:

user www-data;
Run Code Online (Sandbox Code Playgroud)

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

Ric*_*ith 13

该错误表明您SCRIPT_FILENAME的错误.你的评论:

在WordPress容器中,它位于/ app/nx /容器中的/ var/www/html/index.php

表明nginx并且php-fpm正在看到不同的文档根.

在这种情况下,使用:

fastcgi_param   SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;
Run Code Online (Sandbox Code Playgroud)