From f66d3eb81e2c237858d8f95274f729b8ea7c59c6 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 3 May 2019 08:31:17 +0200 Subject: [PATCH] fix varnish comment according to this link: https://varnish-cache.org/docs/trunk/reference/vcl.html#comments a multiline comment should not start on the "/*"-line --- http_cache/varnish.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/http_cache/varnish.rst b/http_cache/varnish.rst index 43d4473b9f2..ac210f6c388 100644 --- a/http_cache/varnish.rst +++ b/http_cache/varnish.rst @@ -134,9 +134,10 @@ using Varnish 3: .. code-block:: varnish3 sub vcl_fetch { - /* By default, Varnish3 ignores Cache-Control: no-cache and private - https://www.varnish-cache.org/docs/3.0/tutorial/increasing_your_hitrate.html#cache-control - */ + /* + By default, Varnish3 ignores Cache-Control: no-cache and private + https://www.varnish-cache.org/docs/3.0/tutorial/increasing_your_hitrate.html#cache-control + */ if (beresp.http.Cache-Control ~ "private" || beresp.http.Cache-Control ~ "no-cache" || beresp.http.Cache-Control ~ "no-store"