Commit f7fd7ef0 authored by Tollef Fog Heen's avatar Tollef Fog Heen

Document do_esi

Put esi → do_esi in upgrade checklist, fix markup typo.

Fixes #974
parent cbd6a3fa
......@@ -78,7 +78,7 @@ becomes
``req.hash`` is replaced with ``hash_data()``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You no longer append to the hash with +=, so
You no longer append to the hash with ``+=``, so
set req.hash += req.url;
......@@ -86,6 +86,17 @@ becomes
hash_data(req.url);
``esi`` is replaced with ``beresp.do_esi``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You no longer enable ESI with ``esi``, so
esi;
in ``vcl_fetch`` becomes
set beresp.do_esi = true;
``pass`` in ``vcl_fetch`` renamed to ``hit_for_pass``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
......
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