diff --git a/docs/varnish/vcl/varnish5.vcl b/docs/varnish/vcl/varnish5.vcl index 298ff774..a18d847e 100644 --- a/docs/varnish/vcl/varnish5.vcl +++ b/docs/varnish/vcl/varnish5.vcl @@ -59,7 +59,8 @@ sub vcl_recv { } } - // Do a standard lookup on assets (these don't vary by user context hash) + // Do a standard lookup on assets (these don't vary by user context hash). + // If you use DFS in your project, please remember to remove from the list those extensions, which are served using DFS. // Note that file extension list below is not extensive, so consider completing it to fit your needs. if (req.url ~ "\.(css|js|gif|jpe?g|bmp|png|tiff?|ico|img|tga|wmf|svg|swf|ico|mp3|mp4|m4a|ogg|mov|avi|wmv|zip|gz|pdf|ttf|eot|wof)$") { return (hash);