Nginx 上基于 IP 的虚拟主机

Nginx 上基于 IP 的虚拟主机

我正在尝试在购买的 DigitalOcean droplet 上设置和运行 WordPress。目前我还没有域名,想以以下方式运行它http://139.59.21.155。这是我的 Nginx sites-enabled 文件的样子:

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

    root /home/ankush/wp_fu_main;
    index index.php index.html index.htm;

    location / {
            # try_files $uri $uri/ =404;
            try_files $uri $uri/ /index.php?q=$uri&$args;
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
            root /usr/share/nginx/html;
    }

    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }
}

WordPress 安装程序位于目录中/home/ankush/wp_fu_main。到目前为止,我得到的只是一个空白页。错误日志中也没有任何内容(/var/log/nginx/error.log)。我做错了什么?我怎么知道 Nginx 是否接收了这些请求?

答案1

我通过谷歌搜索解决了这个问题。事实证明,在 WordPress 上使用 Nginx 时出现空白页是一个常见问题,并且与 FastCGI 缓存有关:https://www.narga.net/avoid-nginx-wordpress-blank-page/

相关内容