Varnish: vcl_error-Umleitung

Varnish: vcl_error-Umleitung

Ich habe ein paar Fragen zur Varnish-Konfiguration. Ich habe diese einfache Konfigurationsdatei:

backend default {
  .host = "127.0.0.1";
  .port = "80";
}

sub vcl_recv {

if (req.http.Host == "192.168.1.100")
  {
    set req.http.Location = "http://example.com" req.url;
    error 750 "Permanently moved - TEST";
  }
}

sub vcl_error {

if (obj.status == 750) {
  set obj.http.Location = req.http.Location;
  set obj.status = 301;
  return(deliver);
 }
}

Frage:

(1) Ich bin gefolgtDasBeispiel: set req.http.Location = "http://example.com" + req.url;– Ich kann Varnish jedoch nicht neu laden, ohne dieses +Symbol zu entfernen – ist es erforderlich und welchen Zweck hat es?

# /etc/init.d/varnish reload
Loading vcl from /etc/varnish/default.vcl
Current running config name is reload_2013-12-17T15:01:43
Using new config name reload_2013-12-17T15:18:31
Message from VCC-compiler:
Expected variable, string or semicolon
(input Line 124 Pos 58)
    set req.http.Location = "http://example.com" + req.url;
---------------------------------------------------------#---------
Running VCC-compiler failed, exit 1VCL compilation failed
Command failed with error code 106
varnishadm -S /etc/varnish/secret -T 127.0.0.1:6082 vcl.load failed

Antwort1

In 2.1 sieht die Zeichenkettenverkettung folgendermaßen aus:

set req.http.Location = "http://example.com" req.url;

In 3.0 wurde dies explizit durch die Verwendung von „+“ erreicht.

https://www.varnish-cache.org/docs/3.0/installation/upgrade.html#string-concatenation-operator

verwandte Informationen