Commit 82530f06 authored by Nils Goroll's avatar Nils Goroll

add README

parent 82b39cf6
..
.. NB: This file is machine generated, DO NOT EDIT!
..
.. Edit vmod.vcc and run make instead
..
.. role:: ref(emphasis)
===========
VMOD objesi
===========
---------------------
Varnish objesi Module
---------------------
:Manual section: 3
SYNOPSIS
========
.. parsed-literal::
import objesi [from "path"]
BOOL is_esi()
DESCRIPTION
===========
This vmod specifically adds a way to determine if ESI processing is
not only enabled, but actually active for delivery of an object. It
basically compensates for the issue documented in
https://github.com/varnishcache/varnish-cache/issues/3002
For ESI delivery to be active, ``beresp.do_esi`` must have been
enabled when the respective object went into the cache, it must have
been enabled for ESI processing (see, for example the
``esi_disable_xml_check`` feature flag) and ``resp.do_esi`` must be
true.
Example::
import objesi;
sub vcl_deliver {
if (objesi.is_esi) {
# ... do things to happen only for esi
}
}
.. _vmod_objesi.is_esi:
BOOL is_esi()
-------------
Return true if ESI processing is active.
May only be called from ``vcl_deliver {}``.
SEE ALSO
========vcl\(7),varnishd\(1)
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