plone.recipe.varnish


Nameplone.recipe.varnish JSON
Version 6.0.13 PyPI version JSON
download
home_pagehttps://pypi.python.org/pypi/plone.recipe.varnish
SummaryBuild and/or configure Varnish Cache with zc.buildout
upload_time2024-04-22 15:27:31
maintainerNone
docs_urlNone
authorWichert Akkerman, et al
requires_python!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7
licenseBSD
keywords buildout varnish cache proxy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. This README is meant for consumption by humans and PyPI. PyPI can render rst files so please do not use Sphinx features.
   If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
   This text does not appear on PyPI or github. It is a comment.

.. image:: https://github.com/collective/plone.recipe.varnish/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/collective/plone.recipe.varnish/actions/workflows/tests.yml

.. image:: https://img.shields.io/pypi/v/plone.recipe.varnish.svg
    :target: https://pypi.python.org/pypi/plone.recipe.varnish/
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/plone.recipe.varnish.svg?style=plastic
   :target: https://pypi.python.org/pypi/plone.recipe.varnish/
   :alt: Supported - Python Versions

.. image:: https://img.shields.io/pypi/l/plone.recipe.varnish.svg
    :target: https://pypi.python.org/pypi/plone.recipe.varnish/
    :alt: License

Varnish recipe for buildout
===========================

plone.recipe.varnish is a `zc.buildout`_ recipe to install `Varnish`_. Even
though the name contains the name Plone, there is nothing Plone-specific about
this recipe: it works for non-Zope sites just as well.

PLEASE NOTE: Version 6.x of this recipe now 'supports' Varnish 6.0 LTS only. Template
generation support for older unsupported Varnish versions or the intermediate
development versions have been removed.  Varnish Software (the company) has switched
to a half yearly time boxed release cycles without rigorous quality assurance, from
which an lts version is picked when deemed stable enough.

If you have custom vcl and/or want to use your current recipe, you can keep
plone.recipe.varnish pinned to versions 2.x, or you can use this 6.x version of the
recipe, but provide parameters for a custom download url and custom vcl file.


Configuring it is very simple. For example::

    [varnish-build]
    recipe = plone.recipe.varnish:build

    [varnish-configuration]
    recipe = plone.recipe.varnish:configuration
    backends = 127.0.0.1:8081

    [varnish-script]
    recipe = plone.recipe.varnish:script
    bind = 127.0.0.1:8000
    cache-size = 512M


This configures three buildout parts:

``varnish-build``
    which will download, compile and install varnish,

``varnish-configuration``
    which generates the VCL configuration file,
    sending requests to a backend at 127.0.0.1:8081, and

``varnish-script``
    which runs Varnish, configured to listen on 127.0.0.1:8000 for requests,
    using a 512 megabyte cache.

A wrapper script for the varnish startup command is created in the ``bin``
directory of your buildout.

Please note that the configuration generated by this recipe is specifically
meant for the latest LTS version of Varnish, version 6.0.x .


Area's of interest to look at when you use this recipe
------------------------------------------------------

Even though this recipe tries to provide sane defaults for most parameters for
a drop in placement, there are a few area's of expertise which you can learn
about to understand and test for a performant but stable Varnish set up.

* If you use this recipe, you will use buildout and a common setup for
  'single' projects is that your Varnish will only cache for one Plone site. An
  inherent problem with caching is cache invalidation: when an editor changes a
  page you want to make sure the next delivery for this content item fetched
  freshly from the backend (Plone) site. Plone's caching setup can be configured
  to send a purge requests for changed content to Varnish. The calculated has
  plays an essential role in this type of purging: if the calculated hash from
  the client request is different from the calculated hash on the purge request,
  purging will fail.

* There are clever alternative purge request setups, which can improve freshness
  but you really have to know what you are doing and experience so far is that
  more advanced schemes have broken between Varnish upgrades.

* Especially if you have multiple backends and you let Varnish do the load
  balancing, don't forget to enable the grace-sick and grace-healthy options.
  When the recipe notices there parameters, it automatically enables health probe
  settings in the generated vcl. grace helps serving pages temporarily when your
  backends are temporarily down.

* As soon as a cookie appears on an incoming request, Varnish will not cache the request
  and even store the url in a 'hit for pass' buffer so that subsequent similar requests
  don't get delayed by waiting in the backend request queue. The generated vcl has a function
  which strips off most irrelevant cookies from incomiing requests before they get passed
  to the backend to increase cache hit rate. the __ac cookie is the most notable exception,
  this indicates for Plone that a user is logged in and caching should be disabled.

* You can monitor Varnish caching operations in great detail by learning how to
  use varnishlog and the query language, but it will take at least a few hours if
  you have never used this tool before. It is easy to draw the wrong conclusions
  from just poking around a bit in varnishlog and seeing hits or misses.


Virtual hosting
---------------

Varnish supports virtual hosting by selecting a different backend server
based on headers on the incoming request. You can configure the backends
through the backends option::

  [varnish-configuration]
  backends =
     plone.org:127.0.0.1:8000
     plone.net:127.0.0.1:9000

This will generate a configuration which sends all traffic for the plone.org
host to a backend server running on port 8000 while all traffic for the
plone.net host is send to port 9000.


Zope 2 hosting (with Virtual Host Monster)
------------------------------------------

If you are using Zope 2 as backend server you will need to rewrite the URL
so the Zope Virtual Host Monster (VHM) can generate correct links for links in
your pages. This can be done either by a web server such as Apache or nginx
(placed either in front or behind Varnish) but can also be done by Varnish itself.

The three options are described below.

Option 1 (rewrites after Varnish)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If generating these VHM-style URLs in a proxy *behind* Varnish (or if using
VHM's 'mapping' feature), no extra Varnish configuration is needed.
Just make sure the ``backends`` option directs the traffic to the proxy.

Option 2 (rewrites before Varnish)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If generating these VHM-style URLs in a proxy *in front* of Varnish, no extra
Varnish configuration is needed as long as the original hostname is still retained
in the URL. If the hostname is not retained, you can tell Varnish to direct requests
based on the "path" instead of the hostname.  For example::

  [varnish-configuration]
  backends =
    /VirtualHostBase/http/plone.org:80/Plone:127.0.0.1:8000
    /VirtualHostBase/http/plone.net:80/Plone:127.0.0.1:9000

This will generate a configuration which sends all traffic for any request whose
path starts with ``/VirtualHostBase/http/plone.org:80/Plone`` to a backend server
running at 127.0.0.1 on port 8000, while request paths starting with
``/VirtualHostBase/http/plone.net:80/Plone`` are sent to port 9000.

Option 3 (rewrites within Varnish)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

To have Varnish generate these VHM-style URLs, you can use the
``zope2_vhm_map`` option.
Here is an example::

  [varnish-configuration]
  zope2_vhm_map =
      plone.org:/plone
      plone.net:/plone

This tells us that the domain plone.org should be mapped to the location
``/plone`` in the backend. By combining this with the information from the
``backends`` option a varnish configuration will be generated that
maps URLs correctly.

Load Balancing
--------------

Varnish supports load balancing by configuring a director for a pool of backends.
This director sends the incoming requests that cannot be fulfilled by varnish to
backends in the pool in either random or round robin fashion. You can configure
the director via the ``balancer`` option::

  [varnish-configuration]
  balancer = random

This will generate a configuration which sends all traffic to the director,
which will choose a 'random' backend server to fulfill the request if the
content requested is not cached by varnish itself.


plone.recipe.varnish reference
------------------------------

The ``plone.recipe.varnish`` recipe does one or more of the following:

``plone.recipe.varnish:build``
    compiles varnish from sources

``plone.recipe.varnish:configuration``
    generates a VCL-configuration file

``plone.recipe.varnish:script``
    generates a wrapper script inside your buildout that will start Varnish
    with the correct configuration.



Build varnish from sources
~~~~~~~~~~~~~~~~~~~~~~~~~~

``build`` is based on
`zc.recipe.cmmi <https://pypi.python.org/pypi/zc.recipe.cmmi>`_ - so all
parameters from that recipe are available here too (but rarely used). These options are available for the recipe part plone.recipe.varnish:build.

Three parameters are different/ extra:

``url``
    Location used for download of varnish sources. Defaults to the latest LTS version.

``jobs``
    Passes the number of parallel jobs to ``make``, defaults to ``4``. Adjust as
    needed to your CPU resources.

``compile-vmods``
    Boolean flag defaults to False, used for building Varnish modules. By defaults,
    the Varnish modules are from `module collection by Varnish Software
    <https://github.com/varnish/varnish-modules/releases>`_

VCL Configuration Generator
~~~~~~~~~~~~~~~~~~~~~~~~~~~

These options are available for the recipe part plone.recipe.varnish:configuration.

``backends``
    Specifies the backend or backends which will process the (uncached)
    requests. The syntax for backends:

    ``[<hostname>][/<path>]:<ip address>:<port>``

    The optional ``hostname`` and ``path`` allows you to do virtual hosting.
    If multiple backends are specified then each backend must include
    either a hostname or path (or both) so that Varnish can direct the
    matching request to the appropriate backend. Defaults to
    ``127.0.0.1:8080``.

``balancer``
    If included and set to either ``random`` or ``round_robin``, this option
    configures varnish to load balance the servers specified by the ``backends``
    directive. Possible values: ``none`` (default), ``round_robin`` or
    ``random``.

``between-bytes-timeout``
    If specified, this option configures the timeout (in seconds) for Varnish
    waiting between bytes when receiving data from a backend. Varnish will only
    wait this many seconds between bytes before giving up. A value of 0s means
    this will never time out. Defaults to *60s*, as per Varnish's default
    settings.

``bind``
    Hostname and port on which Varnish will listen for requests. Defaults
    to ``127.0.0.1:8000``.

``connect-timeout``
    If specified, this option configures the connection timeout (in seconds)
    for Varnish connecting to a backend server. Varnish will only try to
    connect to a given backend for this many seconds before giving up. Defaults
    to 0.4s, as per Varnish's default settings.

``cookie-pass``
    This list consists of lines with a cookie-match and urlexclude in the form:
    ``"cookiematch":"urlexcludes"``. If *cookiematch* applies for the cookiename,
    then the request is passed directly to the configured backend
    bypassing any caching. Additionally, if the current url matches urlexcludes,
    then the cookies are removed, and the request piped to the backend.
    Defaults are optimized for Plone, one line:
    ``"auth_token|__ac(|_(name|password|persistent))=":"\.(js|css|kss)$"``
    So when you are authenticated, the request is always handled by Plone.
    When an authenticated user requests a js/css/kss file,
    Plone will see you as anonymous because no cookies reach Plone.

``cookie-pass-not-exclude``
    If url matches this regexp, ``cookie-pass`` exclude rules are skipped. This is useful
    for url like ``++resource++zmi`` that requires authentication also for resources
    like js, css, ...

``cookie-whitelist``
    When the ``cookie-pass`` is processed and does not match, this means you are
    anonymous, at least with the default ``cookie-pass`` settings.
    In that case, this whitelist is used to to sanitize cookie data on the request.
    Cookie data to be sent to the backend includes only cookies with the given names.
    Defaults are optimized for Zope2/Plone:
    ``statusmessages __ac _ZopeId __cp auth_token``
    The ``__ac`` and ``auth_token`` cookies should not be needed, as they are
    already in the ``cookie-pass`` list, but they are here for safety in case
    you have customized the ``cookie-pass`` setting to not include them.
    If you have custom code that sets cookies and needs to read them in the backend,
    then you must add the cookie names to this list.

``first-byte-timeout``
    If specified, this option configures the timeout (in seconds) for Varnish
    receiving the first byte from a backend. Varnish will only wait for this
    many seconds before giving up. A value of 0s means Varnish will never time
    out. Defaults to 300s.

``purge-hosts``
    Specifies hostnames or IP addresses for purge ACL. By default ``localhost`` and
    the backends are allowed to purge. Additional allowed hosts are listed here.

``vcl_recv``, ``vcl_hit``, ``vcl_miss``, ``vcl_backend_fetch``, ``vcl_backend_response``, ``vcl_deliver``, ``vcl_pipe``, ``vlc_purge``, ``vcl_hash``, ``vcl_import``, ``vcl_init``, ``vcl_pass``, ``vcl_synth``
    Insert arbitrary VCL code into the generated config.

``verbose-headers``
    Enable sending extra headers in responses that expose what varnish
    did with the request and the cache status. Useful for debugging
    cache settings and optimizations.
    Possible values: ``on`` or ``off`` (default).

``zope2_vhm_map``
    Defines a virtual host mapping for Zope servers. This is a list of
    ``hostname:ZODB location`` entries which specify the location inside
    Zope where the website for a virtual host lives.

``zope2_vhm_port``
    Defines a virtual host mapping port to use in the VHM URL to send back to
    clients. Useful if there is another port mapping in front of varnish, such
    as haproxy. Defaults to bind port.

``zope2_vhm_ssl``
    If specified, this maps VHM URLs to ``https`` for all requests.
    Possible values: ``on`` or ``off`` (default).

``zope2_vhm_ssl_port``
    Defines a virtual host mapping port to use in the VHM URL to send back to
    clients. Useful if there is another port mapping in front of varnish, such
    as haproxy. Defaults to 443.

``vcl-version``
    Varnish VCL format version.
    If not given it defaults to ``4.0``.

``health-probe-*``
    Settings for backend health probes. Probes are activated if `grace-healthy` is set.

    See https://varnish-cache.org/docs/6.0/reference/vcl.html#probes for a
    detailed explanation of each setting.

    * `health-probe-url`: defaults to ``/ok``
    * `health-probe-timeout`: defaults to ``5s``
    * `health-probe-interval`: defaults to ``15s``
    * `health-probe-window`: defaults to ``10``
    * `health-probe-threshold`: defaults to ``8``
    * `health-probe-initial`: If not given varnish will default to `threshold -1`

``grace-healthy``
    Grace in the context of Varnish means delivering otherwise expired objects
    when circumstances call for it. This can happen because:
    (1) the backend-director selected is down, or
    (2) a different thread has already made a request to the backend that's
    not yet finished.

    If the backend is healthy, accept objects that are this number of seconds
    old. Clients will be delivered content that is no more than number of
    seconds past its TTL.

    Format: number followed by a time unit: ms, s, m, h.

    Defaults to ``None``. If this is set to ``None`` the grace
    feature is disabled.

``grace-sick``
    If the backend is sick, accept objects that are this old.
    See also ``grace-healthy``.

    Format: number followed by a time unit: ms, s, m, h.

    Defaults to ``600s``. Should be greater than ``grace-healthy``.


To test the generated configuration for syntactic correctness, run
``varnishd -C -f ./parts/varnish-configuration/varnish.vcl``.


Create script to start varnish
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Start varnish as a daemon or in foreground with the given settings. These options are available for the recipe part plone.recipe.varnish:script.

``bind``
    Hostname and port on which Varnish will listen for requests. Defaults
    to ``127.0.0.1:8000``.

``build-part``
    References the buildout part in order to get settings from there. Defaults
    to ``varnish-build``. Set it to ``false`` in order to switch it off.

``cache-location``
    Customise the location for the Varnish file storage.  Option only applicable
    when used with ``file`` or ``persistent`` cache-type options.  Defaults to
    using a file named ``storage`` inside the relevant parts directory
    (eg ``parts/varnish/storage``).  Changing the default location can be
    useful in putting the storage somewhere with quicker read speeds
    (e.g. RAM disk).

``cache-size``
    The size of the cache (limited to 2G on 32bit systems). Defaults to
    256M.

``cache-type``
    Specify the type of cache storage to use with Varnish.
    Possible values: ``file`` (storage for each object is allocated from an
    arena backed by a file),
    ``malloc`` (storage for each object is allocated with malloc; in memory),
    or ``persistent`` (experimental as at Varnish 2.1.4).
    Defaults to ``file``.

``configuration-file``
    Path to a Varnish VCL configuration file to use. Defaults to the generated
    file from the ``configuration-part`` setting.
    If no configuration was generated, this setting is mandatory.

``configuration-part``
    Names the buildout part to get settings from.
    Defaults to ``varnish-configuration``.

``daemon``
    The file and path of the varnish daemon ``varnishd`` to use.
    If not given, it looks for the build part
    (see the ``build-part`` setting)
    and uses its ``location`` setting plus the string ``/sbin/varnishd``.
    If there is no build part, it defaults to ``/usr/sbin/varnishd`` - the
    most common place
    where it's found on many Unix systems. Adjust it if needed.

``group``
    The name of the group that varnish should switch to before accepting any
    request. This defaults to the main group for the specified user.

``mode``
    Specify whether the varnish daemon should run in ``daemon`` or
    ``foreground`` mode.  The latter is useful when varnish is run by service
    supervision tools like daemontools or runit. Defaults to ``daemon``.

``name``
    If specified this sets the name of the varnish instance (defaults to
    the host name).

    From varnishd's manpage:

      Amongst other things, this name is used to construct the name of the
      directory in which varnishd keeps temporary files and persistent state.
      If the specified name begins with a forward slash, it is interpreted as
      the absolute path to the directory which should be used for this purpose.

``runtime-parameters``
    Runtime parameter configuration options. The full list of available options
    can be found in the manpage varnishd(1) for your version of varnish.
    Examples include ``thread_pool_max``, ``thread_pool_min``, ``sess_timeout``.

``telnet``
    If specified sets the hostname and port on which Varnish will listen
    for commands using its telnet interface.

``script-filename``
    Name of the start script file in ``buildout:bin-directory``.
    Defaults to the name of this buildout part.

``secret-file``

    In Varnish 4.X the telnet interface is no longer usable without
    authentication by default. A pre shared key mechanism has been put in place
    which requires both the varnish daemon and a client connection over telnet
    (like the varnishadm tool) to have a shared key to authenticate. By default
    if no secret-file is specified, it's no longer possible to authenticate to
    the telnet interface.

    To disable this security feature (and go back to the dark Varnish 2 & 3
    days) use ``secret-file = disabled``. This is discouraged.

    To enable the secret-file, give the path to a file on the filesystem that
    preferably has random content and is both accessible to the varnish daemon
    and a command line utility like varnishadm.

    An example buildout part to generate such a file could be::

        [varnish-secret]
        recipe = plone.recipe.command
        command = dd if=/dev/random of=${buildout:directory}/var/varnish_secret count=1
                  chmod 600 ${buildout:directory}/var/varnish_secret

    Giving secret-file the location of this file will pass on the secret to
    the varnish daemon when it starts up. Afterwards you can use varnishadm
    with the parameters -T host:port -S /path/to/varnish_secret to connect to
    the admin telnet interface.

``user``
    The name of the user varnish should switch to before accepting any
    requests. Defaults to ``nobody``.


.. _Varnish: https://varnish-cache.org/
.. _zc.buildout: https://pypi.org/project/zc.buildout/

Examples:
---------

Use system varnish at ``/usr/sbin/varnishd``, generate start script in
``./bin/varnishd`` using a VCL-file in
``./parts/varnish-configuration/varnish.vcl``::

    [buildout]
    parts =
        varnish-script
        varnish-configuration

    [varnish-script]
    recipe = plone.recipe.varnish:script

    [varnish-configuration]
    recipe = plone.recipe.varnish:configuration

Changelog
=========

6.0.13 (2024-04-22)
-------------------

- Add ``cookie-pass-not-exclude`` config.
  The default value has ``++resource++zmi``, which is needed for Zope 5.9+ (Plone 6.0.10+).
  [mamico]

- Use Varnish 6.0.13 LTS [mamico]

- Add vcl_synth options to insert arbitrary vcl. [mamico]


6.0.11 (2023-08-18)
-------------------

- Use Varnish 6.0.11 LTS.  [maurits]

- Allow to configure storages other than file and malloc (https://varnish-cache.org/docs/trunk/users-guide/storage-backends.html)
  [mamico]

- BUGFIX: secret filename case sensitive [mamico]

- Remove strange check to make vhm_map generation work again. Fixes https://github.com/collective/plone.recipe.varnish/issues/19
  [agitator]


6.0.10 (2022-02-20)
-------------------

- Use Varnish 6.0.10 LTS.  [fredvd]

- Set the default varnish download url to https.  [maurits]

- Fixed typo that prevented mp3 and mp4 from being piped, like other large files.  [maurits]


6.0.9 (2021-12-15)
------------------

- Re-release 6.0.0b4 as version 6.0.9. [fredvd]


6.0.0b4 (2021-12-08)
--------------------

- Use Varnish 6.0.9 LTS.  [fredvd]

- Build VMODS [mamico]


6.0.0b3 (2020-07-15)
--------------------

- BUGFIX: omitting health-probe-url resulted in `.url = "None";` [frisi]


6.0.0b2 (2020-07-14)
--------------------

- Add options to configure backend health checks [frisi]

- Update documentation for health probes. [frisi]


6.0.0b1 (2020-02-26)
--------------------

- BREAKING: only support Varnish version 6.0 LTS and generates config (VCL) for this version
  only as well. If you want to use a different Varnish version with this recipe to use the
  software build and runner setup, provide your own VCL and a custom link to a Varnish
  download url. (Closes #70)
  [fredvd]

- Update to Varnish 6.0.6 LTS security release. [fredvd]

- Set default vcl_hash value so the fallback default.vcl hash function doesn't get activated. This
  will break purging because the hash from the incoming request on your public dns/hostname will
  never match the internal hostname when Plone makes the purge request. (Closes #61, Refs #70)

- Add an option to modify the health-check url defaulting to Plone's /ok view.
  [erral]

- Disable building sphinx documentation in the varnish-build/cmmi stage of installing the software.
  [fredvd]

- Update Varnish versions. Anything below 6.0.X is officially unmaintained. Update versions 6 and 6.0 to latest version 6.0.4
  [fredvd]

- Set default version to version 6, downloading 6.0.4 if no url is provided.
  [fredvd]



2.3.0 (2019-03-26)
------------------

- Simplified test buildout setup by not using plone versions.
  See `issue #69 <https://github.com/collective/plone.recipe.varnish/issues/69>`_.  [maurits]

- Updated default varnish 4 version to latest 4.1.11.  [maurits]

- Pick up vcl_hash custom code insertion again from the buildout recipe values.
  It was defined in the varnish templates but never picked up.
  [fredvd]

- Initial Varnish 6 support.
  [cleberjsantos]

- Fix custom vcl code insertion for ``vcl_purge``
  [mamico]

- Fix grace-sick default.
  [mamico]

2.2.0 (2018-01-05)
------------------

- Initial Varnish 5 support.
  vcl-version parameter has been added to control
  `Varnish VCL Syntax format version <https://book.varnish-software.com/4.0/chapters/VCL_Basics.html#vcl-syntax>`_.
  [maurits, jensens, cleberjsantos]


2.1.0 (2017-12-18)
------------------

- Use 4.1 version by default (4.0 was default until now).  [maurits]


2.0 (2017-12-15)
----------------

- When using varnish 4.1, use varnish 4.1.9.
  4.0 is still the default.  [cleberjsantos, maurits]

- fix default value for ``COOKIE_PASS_DEFAULT`` not matching any other
  urls than the intended static resources.
  [petschki]


2.0a8 (2017-11-03)
------------------

- New: refactor start script as Jinja2 template
  [petschki]

- Fix to failing travis tests, ``bin/createcoverage`` tries to open browser.
  [instification]

- Stripped query string before testing which urls to strip cookies on.
  https://github.com/collective/plone.recipe.varnish/issues/42 [instification]

- Fix custom vcl code insertion for ``vcl_backend_fetch`` and ``vcl_backend_response``
  Update documentation
  [petschki]

- Fix parameter for jailed user in ``varnish_version=4.1``
  [petschki]

- update documentation for ``varnish_version`` which only makes sense to be set in
  the build-part.
  [petschki]


2.0a7 (2017-08-16)
------------------

- Changed default downloads to ``.tgz`` instead of ``.tar.gz``.
  For some reason they were renamed after the last release of this recipe.
  [maurits]


2.0a6 (2017-08-15)
------------------

- Updated default urls to `varnish security releases <https://varnish-cache.org/security/VSV00001.html>`_.
  Also updated these urls to not use the ``repo.varnish-cache.org`` domain,
  because those links will stop working at `31 August 2017 <https://varnish-cache.org/news/index.html#package-repository-status>`_.
  [maurits]

- Fix VCL director: from round-robin to round_robin, tests refactored.
  [cleberjsantos]


2.0a5 (2016-08-29)
------------------

- Made three possible values for the ``varnish_version`` option.  4.0
  (uses 4.0.3), 4.1 (uses 4.1.3), 4 (uses 4.1.3).  4.0 is the default for now.
  4 is intended to be updated to 4.2.x when this is released and found
  to work.
  [maurits]

- Fix: to disable the secret-file authentication, an empty parameter should be
  passed to varnishd on startup.
  [fredvd, nutjob4life]


2.0a4 (2016-02-23)
------------------

- New: add option for secret-file in the script part so you can communicate to
  varnish with varnishadm. See docs for usage and secret-file generation.
  [fredvd]

- Fix: Split at max on two ':' to get a max of 3 parts as raw_backends
  [jensens]


2.0a3 (2015-12-22)
------------------

- re-release: 2.0a2 was a brown bag release
  [jensens]

2.0a2 (2015-12-22)
------------------

- Fix daemon location of script part of the recipe (/usr/bin/varnishd was
  always used.
  [fredvd]

- Fix tests,  download Varnish 4.0.3 as download.
  [fredvd]

2.0a1 (2015-03-02)
------------------

- refactoring and cleanup of the whole recipe and vcl generation:

  - skip support of varnish < v4.0, use 1.x series for older varnish support.
  - do not generate vcl code in python
  - use jinja2 templates for vcl
  - refactor vcl generation out in own testable class
  - change fixup cookies into a cookie whitelist
  - split up recipe in 3 parts: build, configuration generation and script
    generation.

  [jensens]


1.4 (unreleased)
----------------

- Fix test for running in the Varnish 2 or later.
  [cleberjsantos]

- Fixup VCL template Varnish 3.
  [cleberjsantos]

- add saint-mode for varnish_version 3.
  [cleder, cleberjsantos]

- set a default download-url for varnish_version 3.
  [cleder]

- Fixup string concat for varnish_version 3.
  [damaestro]

- Add zope2_vhm_port to be able to explicitly define a response
  port in VHM URLs.
  [damaestro]

- Add zope2_vhm_ssl to use VHM to render https urls.
  [damaestro]

- Add zope2_vhm_ssl_port to be able to explicitly define a response
  port in VHM URLs for ssl.
  [damaestro]

- Update verbose-headers to use upstream debug example:
  https://www.varnish-cache.org/trac/wiki/VCLExampleHitMissHeader
  [damaestro]

- Add cookie-fixup to better support caching of plone conent
  and to ensure no authenticated content gets cached.
  http://developer.plone.org/hosting/varnish.html
  [damaestro]

- Update VCL templates to be more flexible.
  [damaestro]


1.3 (2013-08-21)
----------------

- Add varnish_version option in order to control vcl generation for
  varnish version >= 3
  [rnix]


1.2.2 (2012-10-14)
------------------

- Moved to https://github.com/collective/plone.recipe.varnish
  [maurits]


1.2.1 (2011-05-13)
------------------

- Update known good Varnish to 2.1.5.
  [elro]

- Add vcl_recv, vcl_hit, vcl_miss, vcl_fetch, vcl_deliver, vcl_pipe options to
  insert arbitrary vcl.
  [elro]


1.2 (2011-01-11)
----------------

- Added new options ``cache-type``, ``cache-location`` for specifying type of
  Varnish storage (such as using malloc for alternative storage) and setting a
  custom location for said storage
  [davidjb]

- Added additional unit tests to check Varnish initialisation script
  [davidjb]

- Added new option 'purge-hosts'. Enables additional addresses allowed to purge.
  [jensens]

- Added the `name` option to be able to define the directory varnishd
  puts temporary files to and identify the instance when using varnishlog
  or varnishstat.
  [fRiSi]

- fixed configuration for verbose-headers=on (context in vlc_fetch is
  bresp instead of obj in newer varnish versions)
  [fRiSi]

1.1 (2010-08-05)
----------------

- Changed the default cache size to 256M from 1G.
  [hannosch]

- Updated Varnish to 2.1.3.
  [hannosch]

1.1b1 (2010-04-25)
------------------

- Updated advertised Varnish version to 2.1 and adjusted config.
  [hannosch]

- Correct documentation for the ``daemon`` setting and remove the default.
  [hannosch]

- Removed the deprecated build recipe.
  [hannosch]

- Added basic test infrastructure and a test for the simple buildout.
  [hannosch]

- Use the built-in set type instead of the deprecated sets module. This recipe
  now requires at least Python 2.4.
  [hannosch]

- Added the ability to configure runtime parameters in the varnish runner
  configuration and added information to the documentation for it.
  [benliles]

- Improve readability of the generated config.
  [ldr]

1.0.2 (2010-01-18)
------------------

- Update proposed Varnish to 2.0.6.
  [hannosch]

- Further documentation cleanup.
  [hannosch, vincentfretin]

1.0.1 (2009-11-27)
------------------

- Expose the ``download-url`` of a known-good Varnish release that works with
  the configuration produced by the instance recipe.
  [hannosch]

- Consistently use tabs in the generated vcl file.
  [hannosch]

- Whitespace and documentation cleanup.
  [hannosch]


1.0 (2009-08-27)
----------------

* Made the vcl template build its acl purge section. At present, the vcl will
  only allow purges coming from the local host. If we have multiple hosts that
  are separate from localhost, any PURGE requests will be denied without this.
  See http://varnish.projects.linpro.no/wiki/VCLExamplePurging
  [rockdj]

* Added ability to set various Varnish timeouts (connect_timeout,
  first_byte_timeout, and between_bytes_timeout) from each option in the
  buildout. Default values are set at Varnish defaults of 0.4s for
  connect_timeout, and 60s for between_bytes_timeout. Time for
  first_byte_timeout is set at 300s as per plone.recipe.varnish 1.0rc9.
  [rockdj]

* Set `req.http.host` for incoming virtual hosted URLs. Without setting this,
  purge requests sent from hosts other than localhost (the only host in the acl
  purge list) will result in a 404 message. See
  http://davidjb.com/blog/2009/01/plone-varnish-configuration-cache-hits-purge-fails
  [rockdj]


1.0rc11 (2009-06-27)
--------------------

* Reintroduced grace options. What the varnish documentation say about grace:
  "varnish serves stale (but cacheable) objects while retrieving object from
  backend". The problem is "default_ttl" value is 120s (see
  bin/varnishd/mgt_param.c in varnish 2.0.4). Added a special rule for
  createObject url to not look up in the cache.
  [vincentfretin]


1.0rc10 (2009-06-26)
--------------------

* 1.0rc9 generated broken configuration with balancer=none
  [vincentfretin]


1.0rc9 (2009-06-25)
-------------------

* Do not set req.grace and obj.grace. See
  http://vincentfretin.ecreall.com/articles/varnish-user-be-careful
  [vincentfretin, maurits]

* Removed `header_hit_deliver` and `header_hit_notcacheable` debug messages
  from default template. It is not safe to assign to the object during
  `vcl_hit` until http://varnish.projects.linpro.no/ticket/310 is not fixed.
  See also http://kristian.blog.linpro.no/2009/05/25/common-varnish-issues.
  [hannosch]

* Updated to refer to Varnish 2.0.4. Added a `first_byte_timeout` value of
  300 seconds to the backend definitions. This is a new option since Varnish
  2.0.3 and by default set to 60 seconds. This is arguably too low for certain
  edit operations in Plone sites.
  [hannosch]


1.0rc8 (2008-02-12)
-------------------

* Remove the custom vcl_hash from the template. Adding the Accept-Encoding
  header to the cache break effectively breaks purging since nobody will
  ever include those headers in a PURGE request. To make this safe we just
  remove the Accept-Encoding header from all incoming requests as well.
  [wichert]


1.0rc7 (2008-11-26)
-------------------

* Be more explicit about deprecating the :build entry point.
  [wichert]

* Make the :instance specifier optional: after :build has been removed
  we can deprecate :instance as well.
  [wichert]


1.0rc6 (2008-09-22)
-------------------

* Deprecate plone.recipe.varnish:build in favour of zc.recipe.cmmi: it does
  not make sense to duplicate its logic here.
  [wichert]

* Add feature to enable verbose headers in varnish.vcl. This is primary
  interesting for debugging of cache-settings. See README.txt.
  [jensens]

* Deal better with sources which do not have executable-bits set or
  are svn exports.
  [wichert]

* The 1.0rc5 release was broken and has been retracted. Currently the trunk
  is only usable with the Varnish 2.0-beta1 and later.
  [hannosch]


1.0rc5 (2008-04-27)
-------------------

* Pipe is evil: it pipes the whole connection to the backend which means
  varnish will no longer process any further requests if HTTP pipelining is
  used. Switch to using pass instead.
  [wichert]

* Add a default_ttl of zero seconds to the Varnish runner to avoid a Varnish
  bug with the handling of an Expires header with a date in the past.
  [newbery]

* Merged branches/newbery-hostnamepath.
  [newbery]

* We don't need to include Accept-Encoding in the hash. Varnish takes care
  of Vary negotiation already.
  [newbery]


1.0rc4 (2008-03-18)
-------------------

* Fixed typos / whitespace.
  [hannosch]

* Varnish 1.1.2 is out.
  [wichert]

* Merged witsch-foreground-support back to trunk.
  [witsch]

* Use a pidfile.
  [wichert]


1.0rc3 (2007-09-02)
-------------------

* Fixed a bug where options["location"] was being used before it was being set.
  [rocky]

* Made the module name determination a little more robust during
  createVarnishConfig so that recipes that specify version deps still work.
  [rocky]

* Do not use defaults for user and group.
  [wichert]

* We do need the parts: we use it for the file storage.
  [wichert]


1.0rc2 (2007-08-29)
-------------------

* Add an option to use an existing configuration file.
  [wichert]

* Remove hardcoded caching for images, binaries, CSS and javascript. This
  should be done by the backend server or a custom varnish configuration.
  [wichert]

* Add Accept-Encoding to the cache key so we can handle compressed content.
  [wichert]

* Test if a bin-directory exists. This allows us to compile varnish 1.0
  which does not have an sbin directory.
  [wichert]


1.0rc1 (2007-08-27)
-------------------

* Document the OSX bugfix we apply when building varnish.
  [wichert]

* Add a dummy update method to prevent needless recompiles.
  [wichert]

* Update for Varnish 1.1.1.
  [wichert]


1.0b2 (2007-08-25)
------------------

* When building from svn, we need to run autogen.sh.
  [optilude]

* Refactor the recipe: there are now separate recipes to build and configure
  Varnish. This makes it possible to reconfigure varnish without having to
  recompile with as well as using an already installed varnish.
  [wichert]

* Move the OSX patching code into a separate method.
  [wichert]

* Use pass for non-GET/HEAD requests. This makes a bit more sense and fixes a
  login problem for Plone sites.
  [wichert]

* Reorganize a bit for readability.
  [wichert]

* Support Python 2.3 as well.
  [wichert]

* Make it possible to specify the user and group as well.
  [wichert]

* Do not create the source directory - we move the extracted source in its
  place later.
  [wichert]

* If running on OS X, patch libtool as described in
  http://varnish.projects.linpro.no/ticket/118 and
  http://thread.gmane.org/gmane.comp.web.varnish.misc/668/focus=669.
  [optilude]

* VCL is not C. You need the curlies even on single-line if statements.
  [optilude]

* This rewriting style only works on Zope 3 - Zope 3 reinvented that wheel.
  [wichert]

* Add support for If-Modified-Since and If-None-Match requests.
  Thanks to newbery for the suggstions.
  [wichert]

* Explicitly mention that there is nothing Plone or Zope specific about
  this recipe.
  [wichert]


1.0b1 (2007-08-04)
------------------

* More documentation.
  [wichert]

* Ignore the port information in the host header.
  [wichert]

* Use the port varnish is bound to in the VHM mapping.
  [wichert]

* Define all default values centrally.
  [wichert]

* Add support for Zope virtual hosts.
  [wichert]

* Add support for virtual hosting.
  [wichert]

* Initial import of Varnish recipe.
  [wichert]

            

Raw data

            {
    "_id": null,
    "home_page": "https://pypi.python.org/pypi/plone.recipe.varnish",
    "name": "plone.recipe.varnish",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
    "maintainer_email": null,
    "keywords": "buildout varnish cache proxy",
    "author": "Wichert Akkerman, et al",
    "author_email": "wichert@wiggy.net",
    "download_url": "https://files.pythonhosted.org/packages/14/61/88245be91c3df33716c22bb428473b70ff8144c88d180a6577cce2f97d8a/plone.recipe.varnish-6.0.13.tar.gz",
    "platform": null,
    "description": ".. This README is meant for consumption by humans and PyPI. PyPI can render rst files so please do not use Sphinx features.\n   If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html\n   This text does not appear on PyPI or github. It is a comment.\n\n.. image:: https://github.com/collective/plone.recipe.varnish/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/collective/plone.recipe.varnish/actions/workflows/tests.yml\n\n.. image:: https://img.shields.io/pypi/v/plone.recipe.varnish.svg\n    :target: https://pypi.python.org/pypi/plone.recipe.varnish/\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/plone.recipe.varnish.svg?style=plastic\n   :target: https://pypi.python.org/pypi/plone.recipe.varnish/\n   :alt: Supported - Python Versions\n\n.. image:: https://img.shields.io/pypi/l/plone.recipe.varnish.svg\n    :target: https://pypi.python.org/pypi/plone.recipe.varnish/\n    :alt: License\n\nVarnish recipe for buildout\n===========================\n\nplone.recipe.varnish is a `zc.buildout`_ recipe to install `Varnish`_. Even\nthough the name contains the name Plone, there is nothing Plone-specific about\nthis recipe: it works for non-Zope sites just as well.\n\nPLEASE NOTE: Version 6.x of this recipe now 'supports' Varnish 6.0 LTS only. Template\ngeneration support for older unsupported Varnish versions or the intermediate\ndevelopment versions have been removed.  Varnish Software (the company) has switched\nto a half yearly time boxed release cycles without rigorous quality assurance, from\nwhich an lts version is picked when deemed stable enough.\n\nIf you have custom vcl and/or want to use your current recipe, you can keep\nplone.recipe.varnish pinned to versions 2.x, or you can use this 6.x version of the\nrecipe, but provide parameters for a custom download url and custom vcl file.\n\n\nConfiguring it is very simple. For example::\n\n    [varnish-build]\n    recipe = plone.recipe.varnish:build\n\n    [varnish-configuration]\n    recipe = plone.recipe.varnish:configuration\n    backends = 127.0.0.1:8081\n\n    [varnish-script]\n    recipe = plone.recipe.varnish:script\n    bind = 127.0.0.1:8000\n    cache-size = 512M\n\n\nThis configures three buildout parts:\n\n``varnish-build``\n    which will download, compile and install varnish,\n\n``varnish-configuration``\n    which generates the VCL configuration file,\n    sending requests to a backend at 127.0.0.1:8081, and\n\n``varnish-script``\n    which runs Varnish, configured to listen on 127.0.0.1:8000 for requests,\n    using a 512 megabyte cache.\n\nA wrapper script for the varnish startup command is created in the ``bin``\ndirectory of your buildout.\n\nPlease note that the configuration generated by this recipe is specifically\nmeant for the latest LTS version of Varnish, version 6.0.x .\n\n\nArea's of interest to look at when you use this recipe\n------------------------------------------------------\n\nEven though this recipe tries to provide sane defaults for most parameters for\na drop in placement, there are a few area's of expertise which you can learn\nabout to understand and test for a performant but stable Varnish set up.\n\n* If you use this recipe, you will use buildout and a common setup for\n  'single' projects is that your Varnish will only cache for one Plone site. An\n  inherent problem with caching is cache invalidation: when an editor changes a\n  page you want to make sure the next delivery for this content item fetched\n  freshly from the backend (Plone) site. Plone's caching setup can be configured\n  to send a purge requests for changed content to Varnish. The calculated has\n  plays an essential role in this type of purging: if the calculated hash from\n  the client request is different from the calculated hash on the purge request,\n  purging will fail.\n\n* There are clever alternative purge request setups, which can improve freshness\n  but you really have to know what you are doing and experience so far is that\n  more advanced schemes have broken between Varnish upgrades.\n\n* Especially if you have multiple backends and you let Varnish do the load\n  balancing, don't forget to enable the grace-sick and grace-healthy options.\n  When the recipe notices there parameters, it automatically enables health probe\n  settings in the generated vcl. grace helps serving pages temporarily when your\n  backends are temporarily down.\n\n* As soon as a cookie appears on an incoming request, Varnish will not cache the request\n  and even store the url in a 'hit for pass' buffer so that subsequent similar requests\n  don't get delayed by waiting in the backend request queue. The generated vcl has a function\n  which strips off most irrelevant cookies from incomiing requests before they get passed\n  to the backend to increase cache hit rate. the __ac cookie is the most notable exception,\n  this indicates for Plone that a user is logged in and caching should be disabled.\n\n* You can monitor Varnish caching operations in great detail by learning how to\n  use varnishlog and the query language, but it will take at least a few hours if\n  you have never used this tool before. It is easy to draw the wrong conclusions\n  from just poking around a bit in varnishlog and seeing hits or misses.\n\n\nVirtual hosting\n---------------\n\nVarnish supports virtual hosting by selecting a different backend server\nbased on headers on the incoming request. You can configure the backends\nthrough the backends option::\n\n  [varnish-configuration]\n  backends =\n     plone.org:127.0.0.1:8000\n     plone.net:127.0.0.1:9000\n\nThis will generate a configuration which sends all traffic for the plone.org\nhost to a backend server running on port 8000 while all traffic for the\nplone.net host is send to port 9000.\n\n\nZope 2 hosting (with Virtual Host Monster)\n------------------------------------------\n\nIf you are using Zope 2 as backend server you will need to rewrite the URL\nso the Zope Virtual Host Monster (VHM) can generate correct links for links in\nyour pages. This can be done either by a web server such as Apache or nginx\n(placed either in front or behind Varnish) but can also be done by Varnish itself.\n\nThe three options are described below.\n\nOption 1 (rewrites after Varnish)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf generating these VHM-style URLs in a proxy *behind* Varnish (or if using\nVHM's 'mapping' feature), no extra Varnish configuration is needed.\nJust make sure the ``backends`` option directs the traffic to the proxy.\n\nOption 2 (rewrites before Varnish)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf generating these VHM-style URLs in a proxy *in front* of Varnish, no extra\nVarnish configuration is needed as long as the original hostname is still retained\nin the URL. If the hostname is not retained, you can tell Varnish to direct requests\nbased on the \"path\" instead of the hostname.  For example::\n\n  [varnish-configuration]\n  backends =\n    /VirtualHostBase/http/plone.org:80/Plone:127.0.0.1:8000\n    /VirtualHostBase/http/plone.net:80/Plone:127.0.0.1:9000\n\nThis will generate a configuration which sends all traffic for any request whose\npath starts with ``/VirtualHostBase/http/plone.org:80/Plone`` to a backend server\nrunning at 127.0.0.1 on port 8000, while request paths starting with\n``/VirtualHostBase/http/plone.net:80/Plone`` are sent to port 9000.\n\nOption 3 (rewrites within Varnish)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo have Varnish generate these VHM-style URLs, you can use the\n``zope2_vhm_map`` option.\nHere is an example::\n\n  [varnish-configuration]\n  zope2_vhm_map =\n      plone.org:/plone\n      plone.net:/plone\n\nThis tells us that the domain plone.org should be mapped to the location\n``/plone`` in the backend. By combining this with the information from the\n``backends`` option a varnish configuration will be generated that\nmaps URLs correctly.\n\nLoad Balancing\n--------------\n\nVarnish supports load balancing by configuring a director for a pool of backends.\nThis director sends the incoming requests that cannot be fulfilled by varnish to\nbackends in the pool in either random or round robin fashion. You can configure\nthe director via the ``balancer`` option::\n\n  [varnish-configuration]\n  balancer = random\n\nThis will generate a configuration which sends all traffic to the director,\nwhich will choose a 'random' backend server to fulfill the request if the\ncontent requested is not cached by varnish itself.\n\n\nplone.recipe.varnish reference\n------------------------------\n\nThe ``plone.recipe.varnish`` recipe does one or more of the following:\n\n``plone.recipe.varnish:build``\n    compiles varnish from sources\n\n``plone.recipe.varnish:configuration``\n    generates a VCL-configuration file\n\n``plone.recipe.varnish:script``\n    generates a wrapper script inside your buildout that will start Varnish\n    with the correct configuration.\n\n\n\nBuild varnish from sources\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``build`` is based on\n`zc.recipe.cmmi <https://pypi.python.org/pypi/zc.recipe.cmmi>`_ - so all\nparameters from that recipe are available here too (but rarely used). These options are available for the recipe part plone.recipe.varnish:build.\n\nThree parameters are different/ extra:\n\n``url``\n    Location used for download of varnish sources. Defaults to the latest LTS version.\n\n``jobs``\n    Passes the number of parallel jobs to ``make``, defaults to ``4``. Adjust as\n    needed to your CPU resources.\n\n``compile-vmods``\n    Boolean flag defaults to False, used for building Varnish modules. By defaults,\n    the Varnish modules are from `module collection by Varnish Software\n    <https://github.com/varnish/varnish-modules/releases>`_\n\nVCL Configuration Generator\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThese options are available for the recipe part plone.recipe.varnish:configuration.\n\n``backends``\n    Specifies the backend or backends which will process the (uncached)\n    requests. The syntax for backends:\n\n    ``[<hostname>][/<path>]:<ip address>:<port>``\n\n    The optional ``hostname`` and ``path`` allows you to do virtual hosting.\n    If multiple backends are specified then each backend must include\n    either a hostname or path (or both) so that Varnish can direct the\n    matching request to the appropriate backend. Defaults to\n    ``127.0.0.1:8080``.\n\n``balancer``\n    If included and set to either ``random`` or ``round_robin``, this option\n    configures varnish to load balance the servers specified by the ``backends``\n    directive. Possible values: ``none`` (default), ``round_robin`` or\n    ``random``.\n\n``between-bytes-timeout``\n    If specified, this option configures the timeout (in seconds) for Varnish\n    waiting between bytes when receiving data from a backend. Varnish will only\n    wait this many seconds between bytes before giving up. A value of 0s means\n    this will never time out. Defaults to *60s*, as per Varnish's default\n    settings.\n\n``bind``\n    Hostname and port on which Varnish will listen for requests. Defaults\n    to ``127.0.0.1:8000``.\n\n``connect-timeout``\n    If specified, this option configures the connection timeout (in seconds)\n    for Varnish connecting to a backend server. Varnish will only try to\n    connect to a given backend for this many seconds before giving up. Defaults\n    to 0.4s, as per Varnish's default settings.\n\n``cookie-pass``\n    This list consists of lines with a cookie-match and urlexclude in the form:\n    ``\"cookiematch\":\"urlexcludes\"``. If *cookiematch* applies for the cookiename,\n    then the request is passed directly to the configured backend\n    bypassing any caching. Additionally, if the current url matches urlexcludes,\n    then the cookies are removed, and the request piped to the backend.\n    Defaults are optimized for Plone, one line:\n    ``\"auth_token|__ac(|_(name|password|persistent))=\":\"\\.(js|css|kss)$\"``\n    So when you are authenticated, the request is always handled by Plone.\n    When an authenticated user requests a js/css/kss file,\n    Plone will see you as anonymous because no cookies reach Plone.\n\n``cookie-pass-not-exclude``\n    If url matches this regexp, ``cookie-pass`` exclude rules are skipped. This is useful\n    for url like ``++resource++zmi`` that requires authentication also for resources\n    like js, css, ...\n\n``cookie-whitelist``\n    When the ``cookie-pass`` is processed and does not match, this means you are\n    anonymous, at least with the default ``cookie-pass`` settings.\n    In that case, this whitelist is used to to sanitize cookie data on the request.\n    Cookie data to be sent to the backend includes only cookies with the given names.\n    Defaults are optimized for Zope2/Plone:\n    ``statusmessages __ac _ZopeId __cp auth_token``\n    The ``__ac`` and ``auth_token`` cookies should not be needed, as they are\n    already in the ``cookie-pass`` list, but they are here for safety in case\n    you have customized the ``cookie-pass`` setting to not include them.\n    If you have custom code that sets cookies and needs to read them in the backend,\n    then you must add the cookie names to this list.\n\n``first-byte-timeout``\n    If specified, this option configures the timeout (in seconds) for Varnish\n    receiving the first byte from a backend. Varnish will only wait for this\n    many seconds before giving up. A value of 0s means Varnish will never time\n    out. Defaults to 300s.\n\n``purge-hosts``\n    Specifies hostnames or IP addresses for purge ACL. By default ``localhost`` and\n    the backends are allowed to purge. Additional allowed hosts are listed here.\n\n``vcl_recv``, ``vcl_hit``, ``vcl_miss``, ``vcl_backend_fetch``, ``vcl_backend_response``, ``vcl_deliver``, ``vcl_pipe``, ``vlc_purge``, ``vcl_hash``, ``vcl_import``, ``vcl_init``, ``vcl_pass``, ``vcl_synth``\n    Insert arbitrary VCL code into the generated config.\n\n``verbose-headers``\n    Enable sending extra headers in responses that expose what varnish\n    did with the request and the cache status. Useful for debugging\n    cache settings and optimizations.\n    Possible values: ``on`` or ``off`` (default).\n\n``zope2_vhm_map``\n    Defines a virtual host mapping for Zope servers. This is a list of\n    ``hostname:ZODB location`` entries which specify the location inside\n    Zope where the website for a virtual host lives.\n\n``zope2_vhm_port``\n    Defines a virtual host mapping port to use in the VHM URL to send back to\n    clients. Useful if there is another port mapping in front of varnish, such\n    as haproxy. Defaults to bind port.\n\n``zope2_vhm_ssl``\n    If specified, this maps VHM URLs to ``https`` for all requests.\n    Possible values: ``on`` or ``off`` (default).\n\n``zope2_vhm_ssl_port``\n    Defines a virtual host mapping port to use in the VHM URL to send back to\n    clients. Useful if there is another port mapping in front of varnish, such\n    as haproxy. Defaults to 443.\n\n``vcl-version``\n    Varnish VCL format version.\n    If not given it defaults to ``4.0``.\n\n``health-probe-*``\n    Settings for backend health probes. Probes are activated if `grace-healthy` is set.\n\n    See https://varnish-cache.org/docs/6.0/reference/vcl.html#probes for a\n    detailed explanation of each setting.\n\n    * `health-probe-url`: defaults to ``/ok``\n    * `health-probe-timeout`: defaults to ``5s``\n    * `health-probe-interval`: defaults to ``15s``\n    * `health-probe-window`: defaults to ``10``\n    * `health-probe-threshold`: defaults to ``8``\n    * `health-probe-initial`: If not given varnish will default to `threshold -1`\n\n``grace-healthy``\n    Grace in the context of Varnish means delivering otherwise expired objects\n    when circumstances call for it. This can happen because:\n    (1) the backend-director selected is down, or\n    (2) a different thread has already made a request to the backend that's\n    not yet finished.\n\n    If the backend is healthy, accept objects that are this number of seconds\n    old. Clients will be delivered content that is no more than number of\n    seconds past its TTL.\n\n    Format: number followed by a time unit: ms, s, m, h.\n\n    Defaults to ``None``. If this is set to ``None`` the grace\n    feature is disabled.\n\n``grace-sick``\n    If the backend is sick, accept objects that are this old.\n    See also ``grace-healthy``.\n\n    Format: number followed by a time unit: ms, s, m, h.\n\n    Defaults to ``600s``. Should be greater than ``grace-healthy``.\n\n\nTo test the generated configuration for syntactic correctness, run\n``varnishd -C -f ./parts/varnish-configuration/varnish.vcl``.\n\n\nCreate script to start varnish\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nStart varnish as a daemon or in foreground with the given settings. These options are available for the recipe part plone.recipe.varnish:script.\n\n``bind``\n    Hostname and port on which Varnish will listen for requests. Defaults\n    to ``127.0.0.1:8000``.\n\n``build-part``\n    References the buildout part in order to get settings from there. Defaults\n    to ``varnish-build``. Set it to ``false`` in order to switch it off.\n\n``cache-location``\n    Customise the location for the Varnish file storage.  Option only applicable\n    when used with ``file`` or ``persistent`` cache-type options.  Defaults to\n    using a file named ``storage`` inside the relevant parts directory\n    (eg ``parts/varnish/storage``).  Changing the default location can be\n    useful in putting the storage somewhere with quicker read speeds\n    (e.g. RAM disk).\n\n``cache-size``\n    The size of the cache (limited to 2G on 32bit systems). Defaults to\n    256M.\n\n``cache-type``\n    Specify the type of cache storage to use with Varnish.\n    Possible values: ``file`` (storage for each object is allocated from an\n    arena backed by a file),\n    ``malloc`` (storage for each object is allocated with malloc; in memory),\n    or ``persistent`` (experimental as at Varnish 2.1.4).\n    Defaults to ``file``.\n\n``configuration-file``\n    Path to a Varnish VCL configuration file to use. Defaults to the generated\n    file from the ``configuration-part`` setting.\n    If no configuration was generated, this setting is mandatory.\n\n``configuration-part``\n    Names the buildout part to get settings from.\n    Defaults to ``varnish-configuration``.\n\n``daemon``\n    The file and path of the varnish daemon ``varnishd`` to use.\n    If not given, it looks for the build part\n    (see the ``build-part`` setting)\n    and uses its ``location`` setting plus the string ``/sbin/varnishd``.\n    If there is no build part, it defaults to ``/usr/sbin/varnishd`` - the\n    most common place\n    where it's found on many Unix systems. Adjust it if needed.\n\n``group``\n    The name of the group that varnish should switch to before accepting any\n    request. This defaults to the main group for the specified user.\n\n``mode``\n    Specify whether the varnish daemon should run in ``daemon`` or\n    ``foreground`` mode.  The latter is useful when varnish is run by service\n    supervision tools like daemontools or runit. Defaults to ``daemon``.\n\n``name``\n    If specified this sets the name of the varnish instance (defaults to\n    the host name).\n\n    From varnishd's manpage:\n\n      Amongst other things, this name is used to construct the name of the\n      directory in which varnishd keeps temporary files and persistent state.\n      If the specified name begins with a forward slash, it is interpreted as\n      the absolute path to the directory which should be used for this purpose.\n\n``runtime-parameters``\n    Runtime parameter configuration options. The full list of available options\n    can be found in the manpage varnishd(1) for your version of varnish.\n    Examples include ``thread_pool_max``, ``thread_pool_min``, ``sess_timeout``.\n\n``telnet``\n    If specified sets the hostname and port on which Varnish will listen\n    for commands using its telnet interface.\n\n``script-filename``\n    Name of the start script file in ``buildout:bin-directory``.\n    Defaults to the name of this buildout part.\n\n``secret-file``\n\n    In Varnish 4.X the telnet interface is no longer usable without\n    authentication by default. A pre shared key mechanism has been put in place\n    which requires both the varnish daemon and a client connection over telnet\n    (like the varnishadm tool) to have a shared key to authenticate. By default\n    if no secret-file is specified, it's no longer possible to authenticate to\n    the telnet interface.\n\n    To disable this security feature (and go back to the dark Varnish 2 & 3\n    days) use ``secret-file = disabled``. This is discouraged.\n\n    To enable the secret-file, give the path to a file on the filesystem that\n    preferably has random content and is both accessible to the varnish daemon\n    and a command line utility like varnishadm.\n\n    An example buildout part to generate such a file could be::\n\n        [varnish-secret]\n        recipe = plone.recipe.command\n        command = dd if=/dev/random of=${buildout:directory}/var/varnish_secret count=1\n                  chmod 600 ${buildout:directory}/var/varnish_secret\n\n    Giving secret-file the location of this file will pass on the secret to\n    the varnish daemon when it starts up. Afterwards you can use varnishadm\n    with the parameters -T host:port -S /path/to/varnish_secret to connect to\n    the admin telnet interface.\n\n``user``\n    The name of the user varnish should switch to before accepting any\n    requests. Defaults to ``nobody``.\n\n\n.. _Varnish: https://varnish-cache.org/\n.. _zc.buildout: https://pypi.org/project/zc.buildout/\n\nExamples:\n---------\n\nUse system varnish at ``/usr/sbin/varnishd``, generate start script in\n``./bin/varnishd`` using a VCL-file in\n``./parts/varnish-configuration/varnish.vcl``::\n\n    [buildout]\n    parts =\n        varnish-script\n        varnish-configuration\n\n    [varnish-script]\n    recipe = plone.recipe.varnish:script\n\n    [varnish-configuration]\n    recipe = plone.recipe.varnish:configuration\n\nChangelog\n=========\n\n6.0.13 (2024-04-22)\n-------------------\n\n- Add ``cookie-pass-not-exclude`` config.\n  The default value has ``++resource++zmi``, which is needed for Zope 5.9+ (Plone 6.0.10+).\n  [mamico]\n\n- Use Varnish 6.0.13 LTS [mamico]\n\n- Add vcl_synth options to insert arbitrary vcl. [mamico]\n\n\n6.0.11 (2023-08-18)\n-------------------\n\n- Use Varnish 6.0.11 LTS.  [maurits]\n\n- Allow to configure storages other than file and malloc (https://varnish-cache.org/docs/trunk/users-guide/storage-backends.html)\n  [mamico]\n\n- BUGFIX: secret filename case sensitive [mamico]\n\n- Remove strange check to make vhm_map generation work again. Fixes https://github.com/collective/plone.recipe.varnish/issues/19\n  [agitator]\n\n\n6.0.10 (2022-02-20)\n-------------------\n\n- Use Varnish 6.0.10 LTS.  [fredvd]\n\n- Set the default varnish download url to https.  [maurits]\n\n- Fixed typo that prevented mp3 and mp4 from being piped, like other large files.  [maurits]\n\n\n6.0.9 (2021-12-15)\n------------------\n\n- Re-release 6.0.0b4 as version 6.0.9. [fredvd]\n\n\n6.0.0b4 (2021-12-08)\n--------------------\n\n- Use Varnish 6.0.9 LTS.  [fredvd]\n\n- Build VMODS [mamico]\n\n\n6.0.0b3 (2020-07-15)\n--------------------\n\n- BUGFIX: omitting health-probe-url resulted in `.url = \"None\";` [frisi]\n\n\n6.0.0b2 (2020-07-14)\n--------------------\n\n- Add options to configure backend health checks [frisi]\n\n- Update documentation for health probes. [frisi]\n\n\n6.0.0b1 (2020-02-26)\n--------------------\n\n- BREAKING: only support Varnish version 6.0 LTS and generates config (VCL) for this version\n  only as well. If you want to use a different Varnish version with this recipe to use the\n  software build and runner setup, provide your own VCL and a custom link to a Varnish\n  download url. (Closes #70)\n  [fredvd]\n\n- Update to Varnish 6.0.6 LTS security release. [fredvd]\n\n- Set default vcl_hash value so the fallback default.vcl hash function doesn't get activated. This\n  will break purging because the hash from the incoming request on your public dns/hostname will\n  never match the internal hostname when Plone makes the purge request. (Closes #61, Refs #70)\n\n- Add an option to modify the health-check url defaulting to Plone's /ok view.\n  [erral]\n\n- Disable building sphinx documentation in the varnish-build/cmmi stage of installing the software.\n  [fredvd]\n\n- Update Varnish versions. Anything below 6.0.X is officially unmaintained. Update versions 6 and 6.0 to latest version 6.0.4\n  [fredvd]\n\n- Set default version to version 6, downloading 6.0.4 if no url is provided.\n  [fredvd]\n\n\n\n2.3.0 (2019-03-26)\n------------------\n\n- Simplified test buildout setup by not using plone versions.\n  See `issue #69 <https://github.com/collective/plone.recipe.varnish/issues/69>`_.  [maurits]\n\n- Updated default varnish 4 version to latest 4.1.11.  [maurits]\n\n- Pick up vcl_hash custom code insertion again from the buildout recipe values.\n  It was defined in the varnish templates but never picked up.\n  [fredvd]\n\n- Initial Varnish 6 support.\n  [cleberjsantos]\n\n- Fix custom vcl code insertion for ``vcl_purge``\n  [mamico]\n\n- Fix grace-sick default.\n  [mamico]\n\n2.2.0 (2018-01-05)\n------------------\n\n- Initial Varnish 5 support.\n  vcl-version parameter has been added to control\n  `Varnish VCL Syntax format version <https://book.varnish-software.com/4.0/chapters/VCL_Basics.html#vcl-syntax>`_.\n  [maurits, jensens, cleberjsantos]\n\n\n2.1.0 (2017-12-18)\n------------------\n\n- Use 4.1 version by default (4.0 was default until now).  [maurits]\n\n\n2.0 (2017-12-15)\n----------------\n\n- When using varnish 4.1, use varnish 4.1.9.\n  4.0 is still the default.  [cleberjsantos, maurits]\n\n- fix default value for ``COOKIE_PASS_DEFAULT`` not matching any other\n  urls than the intended static resources.\n  [petschki]\n\n\n2.0a8 (2017-11-03)\n------------------\n\n- New: refactor start script as Jinja2 template\n  [petschki]\n\n- Fix to failing travis tests, ``bin/createcoverage`` tries to open browser.\n  [instification]\n\n- Stripped query string before testing which urls to strip cookies on.\n  https://github.com/collective/plone.recipe.varnish/issues/42 [instification]\n\n- Fix custom vcl code insertion for ``vcl_backend_fetch`` and ``vcl_backend_response``\n  Update documentation\n  [petschki]\n\n- Fix parameter for jailed user in ``varnish_version=4.1``\n  [petschki]\n\n- update documentation for ``varnish_version`` which only makes sense to be set in\n  the build-part.\n  [petschki]\n\n\n2.0a7 (2017-08-16)\n------------------\n\n- Changed default downloads to ``.tgz`` instead of ``.tar.gz``.\n  For some reason they were renamed after the last release of this recipe.\n  [maurits]\n\n\n2.0a6 (2017-08-15)\n------------------\n\n- Updated default urls to `varnish security releases <https://varnish-cache.org/security/VSV00001.html>`_.\n  Also updated these urls to not use the ``repo.varnish-cache.org`` domain,\n  because those links will stop working at `31 August 2017 <https://varnish-cache.org/news/index.html#package-repository-status>`_.\n  [maurits]\n\n- Fix VCL director: from round-robin to round_robin, tests refactored.\n  [cleberjsantos]\n\n\n2.0a5 (2016-08-29)\n------------------\n\n- Made three possible values for the ``varnish_version`` option.  4.0\n  (uses 4.0.3), 4.1 (uses 4.1.3), 4 (uses 4.1.3).  4.0 is the default for now.\n  4 is intended to be updated to 4.2.x when this is released and found\n  to work.\n  [maurits]\n\n- Fix: to disable the secret-file authentication, an empty parameter should be\n  passed to varnishd on startup.\n  [fredvd, nutjob4life]\n\n\n2.0a4 (2016-02-23)\n------------------\n\n- New: add option for secret-file in the script part so you can communicate to\n  varnish with varnishadm. See docs for usage and secret-file generation.\n  [fredvd]\n\n- Fix: Split at max on two ':' to get a max of 3 parts as raw_backends\n  [jensens]\n\n\n2.0a3 (2015-12-22)\n------------------\n\n- re-release: 2.0a2 was a brown bag release\n  [jensens]\n\n2.0a2 (2015-12-22)\n------------------\n\n- Fix daemon location of script part of the recipe (/usr/bin/varnishd was\n  always used.\n  [fredvd]\n\n- Fix tests,  download Varnish 4.0.3 as download.\n  [fredvd]\n\n2.0a1 (2015-03-02)\n------------------\n\n- refactoring and cleanup of the whole recipe and vcl generation:\n\n  - skip support of varnish < v4.0, use 1.x series for older varnish support.\n  - do not generate vcl code in python\n  - use jinja2 templates for vcl\n  - refactor vcl generation out in own testable class\n  - change fixup cookies into a cookie whitelist\n  - split up recipe in 3 parts: build, configuration generation and script\n    generation.\n\n  [jensens]\n\n\n1.4 (unreleased)\n----------------\n\n- Fix test for running in the Varnish 2 or later.\n  [cleberjsantos]\n\n- Fixup VCL template Varnish 3.\n  [cleberjsantos]\n\n- add saint-mode for varnish_version 3.\n  [cleder, cleberjsantos]\n\n- set a default download-url for varnish_version 3.\n  [cleder]\n\n- Fixup string concat for varnish_version 3.\n  [damaestro]\n\n- Add zope2_vhm_port to be able to explicitly define a response\n  port in VHM URLs.\n  [damaestro]\n\n- Add zope2_vhm_ssl to use VHM to render https urls.\n  [damaestro]\n\n- Add zope2_vhm_ssl_port to be able to explicitly define a response\n  port in VHM URLs for ssl.\n  [damaestro]\n\n- Update verbose-headers to use upstream debug example:\n  https://www.varnish-cache.org/trac/wiki/VCLExampleHitMissHeader\n  [damaestro]\n\n- Add cookie-fixup to better support caching of plone conent\n  and to ensure no authenticated content gets cached.\n  http://developer.plone.org/hosting/varnish.html\n  [damaestro]\n\n- Update VCL templates to be more flexible.\n  [damaestro]\n\n\n1.3 (2013-08-21)\n----------------\n\n- Add varnish_version option in order to control vcl generation for\n  varnish version >= 3\n  [rnix]\n\n\n1.2.2 (2012-10-14)\n------------------\n\n- Moved to https://github.com/collective/plone.recipe.varnish\n  [maurits]\n\n\n1.2.1 (2011-05-13)\n------------------\n\n- Update known good Varnish to 2.1.5.\n  [elro]\n\n- Add vcl_recv, vcl_hit, vcl_miss, vcl_fetch, vcl_deliver, vcl_pipe options to\n  insert arbitrary vcl.\n  [elro]\n\n\n1.2 (2011-01-11)\n----------------\n\n- Added new options ``cache-type``, ``cache-location`` for specifying type of\n  Varnish storage (such as using malloc for alternative storage) and setting a\n  custom location for said storage\n  [davidjb]\n\n- Added additional unit tests to check Varnish initialisation script\n  [davidjb]\n\n- Added new option 'purge-hosts'. Enables additional addresses allowed to purge.\n  [jensens]\n\n- Added the `name` option to be able to define the directory varnishd\n  puts temporary files to and identify the instance when using varnishlog\n  or varnishstat.\n  [fRiSi]\n\n- fixed configuration for verbose-headers=on (context in vlc_fetch is\n  bresp instead of obj in newer varnish versions)\n  [fRiSi]\n\n1.1 (2010-08-05)\n----------------\n\n- Changed the default cache size to 256M from 1G.\n  [hannosch]\n\n- Updated Varnish to 2.1.3.\n  [hannosch]\n\n1.1b1 (2010-04-25)\n------------------\n\n- Updated advertised Varnish version to 2.1 and adjusted config.\n  [hannosch]\n\n- Correct documentation for the ``daemon`` setting and remove the default.\n  [hannosch]\n\n- Removed the deprecated build recipe.\n  [hannosch]\n\n- Added basic test infrastructure and a test for the simple buildout.\n  [hannosch]\n\n- Use the built-in set type instead of the deprecated sets module. This recipe\n  now requires at least Python 2.4.\n  [hannosch]\n\n- Added the ability to configure runtime parameters in the varnish runner\n  configuration and added information to the documentation for it.\n  [benliles]\n\n- Improve readability of the generated config.\n  [ldr]\n\n1.0.2 (2010-01-18)\n------------------\n\n- Update proposed Varnish to 2.0.6.\n  [hannosch]\n\n- Further documentation cleanup.\n  [hannosch, vincentfretin]\n\n1.0.1 (2009-11-27)\n------------------\n\n- Expose the ``download-url`` of a known-good Varnish release that works with\n  the configuration produced by the instance recipe.\n  [hannosch]\n\n- Consistently use tabs in the generated vcl file.\n  [hannosch]\n\n- Whitespace and documentation cleanup.\n  [hannosch]\n\n\n1.0 (2009-08-27)\n----------------\n\n* Made the vcl template build its acl purge section. At present, the vcl will\n  only allow purges coming from the local host. If we have multiple hosts that\n  are separate from localhost, any PURGE requests will be denied without this.\n  See http://varnish.projects.linpro.no/wiki/VCLExamplePurging\n  [rockdj]\n\n* Added ability to set various Varnish timeouts (connect_timeout,\n  first_byte_timeout, and between_bytes_timeout) from each option in the\n  buildout. Default values are set at Varnish defaults of 0.4s for\n  connect_timeout, and 60s for between_bytes_timeout. Time for\n  first_byte_timeout is set at 300s as per plone.recipe.varnish 1.0rc9.\n  [rockdj]\n\n* Set `req.http.host` for incoming virtual hosted URLs. Without setting this,\n  purge requests sent from hosts other than localhost (the only host in the acl\n  purge list) will result in a 404 message. See\n  http://davidjb.com/blog/2009/01/plone-varnish-configuration-cache-hits-purge-fails\n  [rockdj]\n\n\n1.0rc11 (2009-06-27)\n--------------------\n\n* Reintroduced grace options. What the varnish documentation say about grace:\n  \"varnish serves stale (but cacheable) objects while retrieving object from\n  backend\". The problem is \"default_ttl\" value is 120s (see\n  bin/varnishd/mgt_param.c in varnish 2.0.4). Added a special rule for\n  createObject url to not look up in the cache.\n  [vincentfretin]\n\n\n1.0rc10 (2009-06-26)\n--------------------\n\n* 1.0rc9 generated broken configuration with balancer=none\n  [vincentfretin]\n\n\n1.0rc9 (2009-06-25)\n-------------------\n\n* Do not set req.grace and obj.grace. See\n  http://vincentfretin.ecreall.com/articles/varnish-user-be-careful\n  [vincentfretin, maurits]\n\n* Removed `header_hit_deliver` and `header_hit_notcacheable` debug messages\n  from default template. It is not safe to assign to the object during\n  `vcl_hit` until http://varnish.projects.linpro.no/ticket/310 is not fixed.\n  See also http://kristian.blog.linpro.no/2009/05/25/common-varnish-issues.\n  [hannosch]\n\n* Updated to refer to Varnish 2.0.4. Added a `first_byte_timeout` value of\n  300 seconds to the backend definitions. This is a new option since Varnish\n  2.0.3 and by default set to 60 seconds. This is arguably too low for certain\n  edit operations in Plone sites.\n  [hannosch]\n\n\n1.0rc8 (2008-02-12)\n-------------------\n\n* Remove the custom vcl_hash from the template. Adding the Accept-Encoding\n  header to the cache break effectively breaks purging since nobody will\n  ever include those headers in a PURGE request. To make this safe we just\n  remove the Accept-Encoding header from all incoming requests as well.\n  [wichert]\n\n\n1.0rc7 (2008-11-26)\n-------------------\n\n* Be more explicit about deprecating the :build entry point.\n  [wichert]\n\n* Make the :instance specifier optional: after :build has been removed\n  we can deprecate :instance as well.\n  [wichert]\n\n\n1.0rc6 (2008-09-22)\n-------------------\n\n* Deprecate plone.recipe.varnish:build in favour of zc.recipe.cmmi: it does\n  not make sense to duplicate its logic here.\n  [wichert]\n\n* Add feature to enable verbose headers in varnish.vcl. This is primary\n  interesting for debugging of cache-settings. See README.txt.\n  [jensens]\n\n* Deal better with sources which do not have executable-bits set or\n  are svn exports.\n  [wichert]\n\n* The 1.0rc5 release was broken and has been retracted. Currently the trunk\n  is only usable with the Varnish 2.0-beta1 and later.\n  [hannosch]\n\n\n1.0rc5 (2008-04-27)\n-------------------\n\n* Pipe is evil: it pipes the whole connection to the backend which means\n  varnish will no longer process any further requests if HTTP pipelining is\n  used. Switch to using pass instead.\n  [wichert]\n\n* Add a default_ttl of zero seconds to the Varnish runner to avoid a Varnish\n  bug with the handling of an Expires header with a date in the past.\n  [newbery]\n\n* Merged branches/newbery-hostnamepath.\n  [newbery]\n\n* We don't need to include Accept-Encoding in the hash. Varnish takes care\n  of Vary negotiation already.\n  [newbery]\n\n\n1.0rc4 (2008-03-18)\n-------------------\n\n* Fixed typos / whitespace.\n  [hannosch]\n\n* Varnish 1.1.2 is out.\n  [wichert]\n\n* Merged witsch-foreground-support back to trunk.\n  [witsch]\n\n* Use a pidfile.\n  [wichert]\n\n\n1.0rc3 (2007-09-02)\n-------------------\n\n* Fixed a bug where options[\"location\"] was being used before it was being set.\n  [rocky]\n\n* Made the module name determination a little more robust during\n  createVarnishConfig so that recipes that specify version deps still work.\n  [rocky]\n\n* Do not use defaults for user and group.\n  [wichert]\n\n* We do need the parts: we use it for the file storage.\n  [wichert]\n\n\n1.0rc2 (2007-08-29)\n-------------------\n\n* Add an option to use an existing configuration file.\n  [wichert]\n\n* Remove hardcoded caching for images, binaries, CSS and javascript. This\n  should be done by the backend server or a custom varnish configuration.\n  [wichert]\n\n* Add Accept-Encoding to the cache key so we can handle compressed content.\n  [wichert]\n\n* Test if a bin-directory exists. This allows us to compile varnish 1.0\n  which does not have an sbin directory.\n  [wichert]\n\n\n1.0rc1 (2007-08-27)\n-------------------\n\n* Document the OSX bugfix we apply when building varnish.\n  [wichert]\n\n* Add a dummy update method to prevent needless recompiles.\n  [wichert]\n\n* Update for Varnish 1.1.1.\n  [wichert]\n\n\n1.0b2 (2007-08-25)\n------------------\n\n* When building from svn, we need to run autogen.sh.\n  [optilude]\n\n* Refactor the recipe: there are now separate recipes to build and configure\n  Varnish. This makes it possible to reconfigure varnish without having to\n  recompile with as well as using an already installed varnish.\n  [wichert]\n\n* Move the OSX patching code into a separate method.\n  [wichert]\n\n* Use pass for non-GET/HEAD requests. This makes a bit more sense and fixes a\n  login problem for Plone sites.\n  [wichert]\n\n* Reorganize a bit for readability.\n  [wichert]\n\n* Support Python 2.3 as well.\n  [wichert]\n\n* Make it possible to specify the user and group as well.\n  [wichert]\n\n* Do not create the source directory - we move the extracted source in its\n  place later.\n  [wichert]\n\n* If running on OS X, patch libtool as described in\n  http://varnish.projects.linpro.no/ticket/118 and\n  http://thread.gmane.org/gmane.comp.web.varnish.misc/668/focus=669.\n  [optilude]\n\n* VCL is not C. You need the curlies even on single-line if statements.\n  [optilude]\n\n* This rewriting style only works on Zope 3 - Zope 3 reinvented that wheel.\n  [wichert]\n\n* Add support for If-Modified-Since and If-None-Match requests.\n  Thanks to newbery for the suggstions.\n  [wichert]\n\n* Explicitly mention that there is nothing Plone or Zope specific about\n  this recipe.\n  [wichert]\n\n\n1.0b1 (2007-08-04)\n------------------\n\n* More documentation.\n  [wichert]\n\n* Ignore the port information in the host header.\n  [wichert]\n\n* Use the port varnish is bound to in the VHM mapping.\n  [wichert]\n\n* Define all default values centrally.\n  [wichert]\n\n* Add support for Zope virtual hosts.\n  [wichert]\n\n* Add support for virtual hosting.\n  [wichert]\n\n* Initial import of Varnish recipe.\n  [wichert]\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Build and/or configure Varnish Cache with zc.buildout",
    "version": "6.0.13",
    "project_urls": {
        "Homepage": "https://pypi.python.org/pypi/plone.recipe.varnish"
    },
    "split_keywords": [
        "buildout",
        "varnish",
        "cache",
        "proxy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "166503f657f4fe1fede3d7693d0a3bc94248e427cf0487af5d57a0c56eb6872d",
                "md5": "63ea6db34440796fcb11952c43da5bd4",
                "sha256": "cf538ab30d55369bf29a11a0045304b2148a3caa1f3190c971b4834adfee6665"
            },
            "downloads": -1,
            "filename": "plone.recipe.varnish-6.0.13-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "63ea6db34440796fcb11952c43da5bd4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
            "size": 32333,
            "upload_time": "2024-04-22T15:27:28",
            "upload_time_iso_8601": "2024-04-22T15:27:28.510332Z",
            "url": "https://files.pythonhosted.org/packages/16/65/03f657f4fe1fede3d7693d0a3bc94248e427cf0487af5d57a0c56eb6872d/plone.recipe.varnish-6.0.13-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "146188245be91c3df33716c22bb428473b70ff8144c88d180a6577cce2f97d8a",
                "md5": "9be79b4e57660e199faff67e1a95e6d1",
                "sha256": "f1d742b8e5c72d17d9e2d23f8bbd6fb399cdf823157f900437e8afd3d4c8daba"
            },
            "downloads": -1,
            "filename": "plone.recipe.varnish-6.0.13.tar.gz",
            "has_sig": false,
            "md5_digest": "9be79b4e57660e199faff67e1a95e6d1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
            "size": 57953,
            "upload_time": "2024-04-22T15:27:31",
            "upload_time_iso_8601": "2024-04-22T15:27:31.751498Z",
            "url": "https://files.pythonhosted.org/packages/14/61/88245be91c3df33716c22bb428473b70ff8144c88d180a6577cce2f97d8a/plone.recipe.varnish-6.0.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-22 15:27:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "plone.recipe.varnish"
}
        
Elapsed time: 0.23630s