Re: caching directories

2008-04-08 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Mart in Abt writes: Hi, i am new to varnish and i am wondering, if it is possible to exclude everything in a directory (including subdirectories) from caching. It works with single files, like: if (req.url ~ /test/README.txt) { pass; } if (req.url ~

AW: caching directories

2008-04-08 Thread Martin Abt
Hi, i am new to varnish and i am wondering, if it is possible to exclude everything in a directory (including subdirectories) from caching. It works with single files, like: if (req.url ~ /test/README.txt) { pass; } if (req.url ~ ^/test/) { pass; } ? Thanks, it