我在使用 varnish-wordpress 设置时遇到了这个奇怪的问题。当我尝试通过清漆转移流量时,我得到了 TOO_MANY_REDIRECTS,但是如果我直接配置 apache 并使用一个在 443 上监听的虚拟主机,它就可以正常工作。清漆中 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);
}
我暂时使用管道,以确保在我仍在测试的这个阶段不会遇到更多缓存。
在这个清漆上,有几个 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 时它会起作用(我正在更改主机中的 ip 以做到这一点),但不是通过清漆。这是我在浏览器中得到的响应(重复了几十次):
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 的响应(因为“服务器”标头和“通过”标头丢失)有什么想法可以解决这个问题吗?
基本上问题与 wp-config 有关。我插入了这段代码:
它奏效了。最初我只是简单地尝试了 $_SERVER['HTTPS'] = 'on';,但我收到了 50 倍的错误。不知道究竟是为什么。在其他 wp 安装上,简单的直接确实有效。将来我将不得不做更多的测试。
您可以尝试按照此链接中的教程进行操作: https ://bash-prompt.net/guides/apache-varnish/
转眼间,
我在这个网站上找到了解决方案 的链接
您必须在虚拟主机配置中添加更多参数,例如外部地址
对于内部站点
你可以在提到的参考资料上找到一个例子