Hi!<div><br></div><div>I think you're looking for something like this, in your VCL (vcl_recv):</div><div><br></div><div>        if (req.url ~ ".*\?purge=true$")</div><div><div>        {</div><div>                set req.http.X-Purge = regsub( req.url, "(.*)\?purge=true$", "\1" );</div>
<div>                purge_url(req.http.X-Purge);</div><div>        }</div><div><br></div><div>I hope this helps you!</div><div><br></div><div>Regards,</div><div>Roberto O. Fernández Crisial.</div><div>@rofc</div><div><br>
</div><div class="gmail_quote">On Wed, Apr 20, 2011 at 5:24 PM, Varnish List <span dir="ltr"><<a href="mailto:varnishlist@realvideosite.com">varnishlist@realvideosite.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<span style="border-collapse:collapse;font-family:arial, sans-serif;font-size:13px">I am trying to figure out if it is at all possible to purge objects in the varnish cache through the URL in the browser.<br>
<br>I have been able to purge using curl -X and the CLI but, say you have an object called image.jpg and you want to open your browser and type:<br><br> <a href="http://www.domain.com/images/image.jpg?purge=true" style="color:rgb(42, 93, 176)" target="_blank">http://www.domain.com/images/image.jpg?purge=true</a><br>

<br>In order to purge it ( TTL=0 ). Is this possible to do? Can it be implemented with VCL? If you know of a way to handle this please let me know.<br><br>I'm somewhat convinced it can be done because it was mentioned here:<a href="http://kristianlyng.wordpress.com/2010/07/15/varnish-crash-course-for-sysadmins" style="color:rgb(42, 93, 176)" target="_blank">http://kristianlyng.wordpress.com/2010/07/15/varnish-crash-course-for-sysadmins</a><br>

<br>Thanks!!!</span>
<br>_______________________________________________<br>
varnish-misc mailing list<br>
<a href="mailto:varnish-misc@varnish-cache.org">varnish-misc@varnish-cache.org</a><br>
<a href="http://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc" target="_blank">http://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc</a><br></blockquote></div><br></div>