Nginx,第二个 WordPress 网站无法加载,问题可能出在网站配置文件上吗?

Nginx,第二个 WordPress 网站无法加载,问题可能出在网站配置文件上吗?

我正在尝试在运行 Nginx 的 Ubuntu 16 服务器上安装第二个 WP 网站 (dancortes.press)。第一个网站 (microurb.club) 已成功安装。我没有遇到这个问题。

根据我的服务器结果,我已成功为第二个网站(dancortes.press)安装了 WordPress,但仍然只能看到 Nginx 主页。我认为可能是因为组所有者是用户,因此我将 Web 文件的组所有者更改为 www-data:

microurb@vps148370:/var/www/dancortes.press/public_html$ ls -l
total 192
-rw-r--r--  1 microurb www-data     0 Oct  5 15:36 index.html
-rw-rw-r--  1 microurb www-data   418 Oct  8 17:07 index.php
-rw-rw-r--  1 microurb www-data 19935 Oct  8 17:07 license.txt
-rw-rw-r--  1 microurb www-data  7413 Oct  8 17:07 readme.html
-rw-rw-r--  1 microurb www-data  5447 Oct  8 17:07 wp-activate.php
drwxrwxr-x  9 microurb www-data  4096 Oct  8 17:07 wp-admin
-rw-rw-r--  1 microurb www-data   364 Oct  8 17:07 wp-blog-header.php
-rw-rw-r--  1 microurb www-data  1627 Oct  8 17:07 wp-comments-post.php
-rw-rw-r--  1 microurb www-data  2599 Oct  8 17:17 wp-config.php
-rw-rw-r--  1 microurb www-data  2853 Oct  8 17:07 wp-config-sample.php
drwxrwxr-x  5 microurb www-data  4096 Oct  8 17:19 wp-content
-rw-rw-r--  1 microurb www-data  3286 Oct  8 17:07 wp-cron.php
drwxrwxr-x 18 microurb www-data 12288 Oct  8 17:07 wp-includes
-rw-rw-r--  1 microurb www-data  2422 Oct  8 17:07 wp-links-opml.php
-rw-rw-r--  1 microurb www-data  3301 Oct  8 17:07 wp-load.php
-rw-rw-r--  1 microurb www-data 34327 Oct  8 17:07 wp-login.php
-rw-rw-r--  1 microurb www-data  8048 Oct  8 17:07 wp-mail.php
-rw-rw-r--  1 microurb www-data 16200 Oct  8 17:07 wp-settings.php
-rw-rw-r--  1 microurb www-data 29924 Oct  8 17:07 wp-signup.php
-rw-rw-r--  1 microurb www-data  4513 Oct  8 17:07 wp-trackback.php
-rw-rw-r--  1 microurb www-data  3065 Oct  8 17:07 xmlrpc.php

我认为问题可能出在 index.html 文件上,所以我删除了它并重新启动了 nginx,但仍然只显示 Nginx 主页。我重新启动了 Nginx 几次。

我检查了访问和错误日​​志,得到的只是有关第一个站点的代码错误。

我检查了 nginx 访问日志:

73.197.81.232 - - [08/Oct/2017:19:10:55 -0400] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"
73.197.81.232 - - [08/Oct/2017:19:10:56 -0400] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"

错误日志中有关于我的第一个网站上的代码的错误:

PHP message: PHP Notice:  Undefined index: success in /var/www/microurb.com/public_html/index.php on line 295" while reading upstream, client: 71.168.149.103, server: microurb.club, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php7.0-fpm.sock:", host: "microurb.club"
2017/10/08 19:10:01 [alert] 22798#22798: *25 open socket #11 left in connection 3
2017/10/08 19:10:01 [alert] 22798#22798: aborting
2017/10/08 19:10:52 [alert] 23108#23108: *3 open socket #3 left in connection 3
2017/10/08 19:10:52 [alert] 23108#23108: aborting

我真的不知道接下来该找什么。为什么我看不到 WP 网站?

这是我的 /etc/nginx/sites-available/dancortes.press 服务器文件:

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

        # SSL configuration
        #
        # listen 443 ssl default_server;
        # listen [::]:443 ssl default_server;
        #
        # include snippets/snakeoil.conf;

        root /var/www/dancortes.press/public_html;

        # Add index.php to the list if you are using PHP
        index index.php;

        server_name dancortes.press;

        include global/restrictions.conf;
        include global/wordpress.conf;

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        }

}

下面我添加了我的 DNS 配置的屏幕截图:

在此处输入图片描述

答案1

错误消息表明 index.php 中的 PHP 在 295 行处格式错误。Wordpress index.php 有 17 行。可能是包含的文件被计入该文件中的行数。

检查 PHP 解释器正在运行什么文件。重新安装 Wordpress。检查调用 PHP 的 Nginxs 设置是否正确。某些主题与 PHP7 不兼容。

相关内容