Commit f93c6faa authored by Per Buer's avatar Per Buer

kill warnings. fix a ref

parent 56cfc908
...@@ -89,6 +89,6 @@ Cookies coming from the backend ...@@ -89,6 +89,6 @@ Cookies coming from the backend
If your backend server sets a cookie using the Set-Cookie header If your backend server sets a cookie using the Set-Cookie header
Varnish will not cache the page. A hit-for-pass object (see Varnish will not cache the page. A hit-for-pass object (see
:ref:`tutorial_vcl_fetch_actions`) is created. So, if the backend :ref:`tutorial-vcl_fetch_actions`) is created. So, if the backend
server acts silly and sets unwanted cookies just unset the Set-Cookie server acts silly and sets unwanted cookies just unset the Set-Cookie
header and all should be fine. header and all should be fine.
...@@ -61,6 +61,7 @@ is dependant on this header. ...@@ -61,6 +61,7 @@ is dependant on this header.
Everything works out of the box from Varnish' perspective. Everything works out of the box from Varnish' perspective.
.. 071-example1-start .. 071-example1-start
VCL:: VCL::
sub vcl_recv { sub vcl_recv {
...@@ -95,6 +96,7 @@ VCL:: ...@@ -95,6 +96,7 @@ VCL::
set resp.http.Vary = regsub(resp.http.Vary, "X-UA-Device", "User-Agent"); set resp.http.Vary = regsub(resp.http.Vary, "X-UA-Device", "User-Agent");
} }
} }
.. 071-example1-end .. 071-example1-end
Example 2: Normalize the User-Agent string Example 2: Normalize the User-Agent string
...@@ -118,6 +120,7 @@ A possible use for this is for CGI scripts where only a small set of predefined ...@@ -118,6 +120,7 @@ A possible use for this is for CGI scripts where only a small set of predefined
headers are (by default) available for the script. headers are (by default) available for the script.
.. 072-example2-start .. 072-example2-start
VCL:: VCL::
sub vcl_recv { sub vcl_recv {
...@@ -158,6 +161,7 @@ The client itself does not see this classification, only the backend request ...@@ -158,6 +161,7 @@ The client itself does not see this classification, only the backend request
is changed. is changed.
.. 073-example3-start .. 073-example3-start
VCL:: VCL::
sub vcl_recv { sub vcl_recv {
...@@ -240,6 +244,7 @@ Redirecting mobile clients ...@@ -240,6 +244,7 @@ Redirecting mobile clients
If you want to redirect mobile clients you can use the following snippet. If you want to redirect mobile clients you can use the following snippet.
.. 065-redir-mobile-start .. 065-redir-mobile-start
VCL:: VCL::
sub vcl_recv { sub vcl_recv {
......
...@@ -51,7 +51,6 @@ headers from the backend. ...@@ -51,7 +51,6 @@ headers from the backend.
.. _tutorial-vcl_fetch_actions: .. _tutorial-vcl_fetch_actions:
actions actions
~~~~~~~ ~~~~~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment