[4.0] 2ccf1b6 Some minor improvements
Federico G. Schwindt
fgsch at lodoss.net
Thu Mar 13 10:24:23 CET 2014
commit 2ccf1b62fff566763df7f483f5044268e6254cf4
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date: Thu Jan 30 15:21:28 2014 +0000
Some minor improvements
diff --git a/etc/example.vcl b/etc/example.vcl
index c9b9aad..c093552 100644
--- a/etc/example.vcl
+++ b/etc/example.vcl
@@ -1,14 +1,15 @@
#
# This is an example VCL file for Varnish.
+#
# It does not do anything by default, delegating control to the builtin vcl.
# The builtin VCL is called when there is no explicit explicit return
# statement.
-
+#
# See the VCL tutorial at https://www.varnish-cache.org/docs/trunk/tutorial/
-# See http://varnish-cache.org/trac/wiki/VCLExamples for more examples.
+# and http://varnish-cache.org/trac/wiki/VCLExamples for more examples.
-# Marker to tell the VCL compiler that this VCL has been adapted to the new 4.0
-# format.
+# Marker to tell the VCL compiler that this VCL has been adapted to the
+# new 4.0 format.
vcl 4.0;
# Default backend definition. Set this to point to your content server.
@@ -25,7 +26,6 @@ sub vcl_recv {
sub vcl_backend_response {
# Happens after we have read the response headers from the backend.
# See http://www.varnish-cache.org/docs/3.0/tutorial/vcl.html#vcl_fetch
-#
}
sub vcl_deliver {
@@ -33,4 +33,3 @@ sub vcl_deliver {
# response to the client.
# See http://www.varnish-cache.org/docs/3.0/tutorial/vcl.html#vcl_fetch
}
-
More information about the varnish-commit
mailing list