wordpress ERR_TOO_MANY_REDIRECTS 通过 varnish,但不通过 apache

wordpress ERR_TOO_MANY_REDIRECTS 通过 varnish,但不通过 apache

我在 varnish-wordpress 设置中遇到了这个奇怪的问题。当我尝试通过 varnish 转移流量时,我得到了 TOO_MANY_REDIRECTS,但如果我直接使用监听 443 的 vhost 配置 apache,它就可以正常工作。varnish 中 default.vcl 的相关部分:

    if (std.port(local.ip) == 80 && req.http.host ~ "example.com(:[0-9]+)?$") {
    set req.http.x-redir = "https://" + req.http.host + req.url;
    return(synth(850, "Moved permanently"));

    [...]


   else if (req.http.host ~ "(www\.)?example.com(:[0-9]+)?$") {
    set req.backend_hint = web227;
        return (pipe);
        }
sub vcl_synth {
    if (resp.status == 850) {
        set resp.http.Location = req.http.x-redir;
        set resp.status = 301;
        return (deliver);
    }

我暂时使用管道,以确保在我仍在测试的这个阶段不会遇到更多的缓存。

在这个 varnish 上,有几个 wordpress 后端可以正常工作,它们上面驻留着相同的 .htaccess,即“经典”的 wordpress .htaccess:

    <IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

这是我的 Apache 站点配置:

<VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName  digital.ringier.ro
        ErrorLog "/var/log/apache2/example.com.error.log"
        CustomLog "/var/log/apache2/example.com.access.log" common
        #Redirect / https://example.com/
        DocumentRoot "/var/www/example.com"
        <Directory "/var/www/example.com">
        AllowOverride all
        Options -Indexes +FollowSymLinks +MultiViews
        </Directory>
</VirtualHost>

<VirtualHost *:443>
        ServerAdmin [email protected]
        ServerName  example.com
        DocumentRoot "/var/www/example.com"
        <Directory "/var/www/example.com">
        AllowOverride all
        Options -Indexes +FollowSymLinks +MultiViews
        </Directory>
        ErrorLog "/var/log/apache2/example.com.error.log"
        CustomLog "/var/log/apache2/example.com.access.log" common
        SSLEngine on
        SSLCertificateFile /etc/apache2/ssl/apache.crt
        SSLCertificateKeyFile /etc/apache2/ssl/apache.key
</VirtualHost>

我实在无法理解为什么当我直接访问 apache 时它可以工作(我正在更改 hosts 中的 ip 以执行此操作),但通过 varnish 却不行。这是我在浏览器中得到的响应(重复了数十次):

HTTP/1.1 301 Moved Permanently
Date: Tue, 02 Oct 2018 17:36:28 GMT
Server: Apache/2.4.18 (Ubuntu)
Location: https://example.com/
Content-Length: 0
Connection: close
Content-Type: text/html; charset=UTF-8

据我所知,这显然是来自 apache 的响应,而不是来自 varnish 的响应(因为缺少“server”标头并且缺少“via”标头)有什么想法可以解决此问题吗?

答案1

基本上,问题与 wp-config 有关。我插入了以下代码:

if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
   $_SERVER['HTTPS'] = 'on';
}

if ( !isset( $_SERVER['HTTPS'] ) ) {
    $_SERVER['HTTPS'] = 'on';
}

并且成功了。最初我只是尝试了 $_SERVER['HTTPS'] = 'on';,但收到了 50x 错误。不确定具体原因。在其他 wp 安装中,简单的直接操作确实有效。我将来必须再做一些测试。

答案2

您可以尝试按照此链接中的教程进行操作: https://bash-prompt.net/guides/apache-varnish/

一转眼,

VirtualHost *:443(无需更改此行)
- -代码 - -
**RequestHeader 设置 X-Forwarded-Proto expr=%{REQUEST_SCHEME}**
- -代码 - -
/虚拟主机

VirtualHost 127.0.0.1:8080(无需更改此行)
- -代码 - -
**SetEnvIf X-Forwarded-Proto https HTTPS=on**
- -代码 - -
/虚拟主机

答案3

我在这个网站上找到了解决方案 一条链接

您必须在虚拟主机配置中添加更多参数,例如外部地址

RequestHeader 设置 X-Forwarded-Proto expr=%{REQUEST_SCHEME}

以及内部网站

SetEnvIf X-Forwarded-Proto https HTTPS=on

你可以在上面提到的参考资料中找到一个例子

相关内容