指定 varnish 的默认虚拟主机

指定 varnish 的默认虚拟主机

我在 Scientific Linux 6.4(64 位)上使用 Varnish-3.0.5:

$ rpm -q varnish
varnish-3.0.5-1.el5.centos.x86_64
$ cat /etc/redhat-release 
Scientific Linux release 6.4 (Carbon)
$ uname -a
Linux XXX.XXX.XXX 2.6.32-358.23.2.el6.x86_64 #1 SMP Wed Oct 16 11:13:47 CDT 2013 x86_64 x86_64 x86_64 GNU/Linux
$ curl XXX.XX.XX.XXX

<html>
<head>
  <title>Page Unavailable</title>
  <style>
    body { background: #303030; text-align: center; color: white; }
    #page { border: 1px solid #CCC; width: 500px; margin: 100px auto 0; padding: 30px; background: #323232; }
    a, a:link, a:visited { color: #CCC; }
    .error { color: #222; }
  </style>
</head>
<body onload="setTimeout(function() { window.location = '/' }, 5000)">
  <div id="page">
    <h1 class="title">Page Unavailable</h1>
    <p>The page you requested is temporarily unavailable.</p>
    <p>We're redirecting you to the <a href="/">homepage</a> in 5 seconds.</p>
    <div class="error">(Error 503 Service Unavailable)</div>
  </div>
</body>
</html>
$ 

我试图弄清楚如何配置默认虚拟主机,因为每当我针对 IP 地址Error 503 Service Unavailable运行时,如果至少有一个后端发生故障,我就会收到此信息。我是否也需要在里面指定 IP 地址,以便停止获取 503?或者我如何指定哪个虚拟主机是默认的?curlreq.http.hostvcl_recv()

答案1

首先,我要说的是,如果没有看到您的实际 VCL 配置,就很难给出建议。

回答你的实际问题

您可以在开始时设置默认主机vcl_recv,请注意,您的后端应配置为响应该精确主机

sub vcl_recv {
  /* set a default host if no host is provided on the request or if it is empty */
  if ( ! req.http.host 
    || req.http.host == "") {
    set req.http.host = "your.default.host.tld";
  }
  # ...

}

我认为你不必处理 IP 和req.http.host,你最好使用 curl 将主机头传递给 varnish (类似于curl -H "Host: your.default.host.tld" http://XX.XX.XX.XXX/)


关于该主题的一些一般建议:

向 VCL 添加行为不当的控制逻辑 [1]

您是否正确设置了后端?

请记住,除非指示在 VCl 逻辑上使用其他,否则 varnish 将使用“默认”后端(或控制器)

添加健康探测器并查看哪些后端出现故障

使用一致的健康探测 [2] 并使用命令行命令varnishadm debug.health查看文档以获得更好的理解 [3]

向您的 vlc 错误添加重启逻辑

像这样

sub vcl_error {
  # ...

  /* Try to restart request in case of failure */
  if (obj.status == 503 && req.restarts < 5) {
    set obj.http.X-Restarts = req.restarts;
    return(restart);
  }

  # Before any deliver
  return (deliver);
}

将调试逻辑添加到您的 vlc 错误合成响应中

vcl_fetch请记住,您可以在将后端错误代码传递到 varnish 错误响应时添加调试标头:

sub vcl_fetch {
  # ...

  set beresp.http.X-Debug-Backend-Code = beresp.status;

  # ...
}
sub vcl_error {
  # ...

  synthetic {""
  # Insert the following at the end of your current response
  <p>Backend Status code was "} + obj.http.X-Debug-Backend-Code + {"</p>
    </body>
  </html>
  "};

  # ...

  return (deliver);
}

[1]https://www.varnish-cache.org/docs/3.0/tutorial/handling_misbehaving_servers.html

[2]https://www.varnish-cache.org/docs/3.0/reference/vcl.html#backend-probes

[3]https://www.varnish-cache.org/trac/wiki/BackendPolling#CLIcommands

相关内容