we cache our web site with varnish. But we want to exclude some html element (i.e. iframes) from cache. How can we configure VLC as we want? Thank you all already now.
Kerberos's questions
i have one web server which is IIS that is back on varnish. there are more web sites on ISS. there are all web sites header's on IIS and all web sites publish from port 80. can i cache all web site by varnish like below code;backend cacheWebSite{.host = "192.168.0.1"; .port = "80";}
sub vcl_recv {if (req.http.host == "www.example1.com") {set req.backend = CacheWebSites;} if (req.http.host == "www.example2.com") {set req.backend = CacheWebSites; } if (req.http.host == "www.example3.com") {set req.backend = CacheWebSites; }}
i can't test this code. that is just senario. thank you for your help already now.
i have two web web sites and i want to cache them with varnish. could i cache them on same varnish with using same port?
for example; www.domain1.com:80, www.domain2.com:80