From: phk Date: Tue, 26 Aug 2008 08:06:27 +0000 (+0000) Subject: Correctly quote backend data in default vcl example. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b042c041f18c15bf79ed0c1ebd777143ac33bb89;p=varnish Correctly quote backend data in default vcl example. Submitted by: ingvar Fixes: #298 git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3128 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/etc/Makefile.am b/varnish-cache/etc/Makefile.am index 548efff4..600dae57 100644 --- a/varnish-cache/etc/Makefile.am +++ b/varnish-cache/etc/Makefile.am @@ -12,8 +12,8 @@ Default backend definition. Set this to point to your content\n\ server.\n\ \n\ backend default {\n\ - .host = "127.0.0.1";\n\ - .port = "8080";\n\ + .host = \"127.0.0.1\";\n\ + .port = \"8080\";\n\ }\n\ \n\ Below is a commented-out copy of the default VCL logic. If you\n\