Skip to content

Added code block for the fos_debug_deliver #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 30, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions doc/varnish-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,10 +361,18 @@ To enable support add the following to ``your_varnish.vcl``:
.. code-block:: varnish4

include "path-to-config/varnish-4/fos_debug.vcl";

sub vcl_deliver {
call fos_debug_deliver;
}

.. code-block:: varnish3

include "path-to-config/varnish-3/fos_debug.vcl";

sub vcl_deliver {
call fos_debug_deliver;
}

.. _ACL: https://www.varnish-cache.org/docs/4.0/users-guide/vcl-example-acls.html
.. _ACL for Varnish 3: https://www.varnish-cache.org/docs/3.0/tutorial/vcl.html#example-3-acls
Expand Down