Nginx与wordpress,使用反向代理作为后备

时间:2019-05-20 18:58:28

标签: wordpress nginx reverse-proxy

我正在尝试设置nginx来按以下顺序尝试文件:

1)查看文件是否直接存在于服务器上 2)查看文件是否作为wordpress的一部分存在 3)如果1或2都不存在,则回退到外部服务器。

我有以下设置:

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

location @proxy {
    proxy_pass      https://external.website.com;
}

这不适用于wordpress,nginx的try_files文档非常无用。我可以看到最后一个arg是回退,因此我尝试翻转了最后两个arg,这导致了wordpress正常工作,但是反向代理不起作用。

1 个答案:

答案 0 :(得分:0)

我想我解决了。从技术上讲,这首先会检查代理,但是对于我想做的事情是可以的。如果有人解决了正确的方法,我会选择它们。

    location / {
        try_files $uri $uri/ @proxy;
    }

    location @proxy {
        proxy_pass      https://external.website.com;
        proxy_intercept_errors on;
        recursive_error_pages on;
        error_page 404 = @wordpress;
    }

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

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