<div dir="ltr"><div><div>That is my requirement !!!.  i'm using the same IP address for both hosts, and need to do the load-balancing between two servers. thats what i wanted to know,  Actually i'm playing with different varnish configs :) on my virtual box.,  thought to give this config a try....but that didnt work. it is working perfectly with different IP's, or IP based Vhosts.<br>
</div>Thanks Thierry for the response.<br>cheers,<br></div>Tharanga<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Aug 30, 2013 at 10:46 PM, MAGNIEN, Thierry <span dir="ltr"><<a href="mailto:thierry.magnien@sfr.com" target="_blank">thierry.magnien@sfr.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I think I understood the point :<br>
- you have 2 backends hosted under the same IP address : <a href="http://www.backend1.com" target="_blank">www.backend1.com</a> and <a href="http://www.backend2.com" target="_blank">www.backend2.com</a><br>
- your varnish server gets requests (for example) for <a href="http://www.frontend.com" target="_blank">www.frontend.com</a><br>
- you want requests to be load-balanced between your 2 backends BUT this would need the bereq.host to be rewritten to either <a href="http://www.backend1.com" target="_blank">www.backend1.com</a> or <a href="http://www.backend2.com" target="_blank">www.backend2.com</a><br>

- BUT you can't do this in your VCL because you don't know which backend will be selected.<br>
<br>
In fact, this would need the director to rewrite the host header once the real backend has been selected, which I don't think is possible.<br>
<br>
Anyway, I still wonder why the hell you need varnish for this, where a HAProxy would certainly do the trick ;-)<br>
<br>
Regards,<br>
Thierry<br>
<br>
<br>
De : varnish-misc-bounces+thierry.magnien=<a href="mailto:sfr.com@varnish-cache.org">sfr.com@varnish-cache.org</a> [mailto:<a href="mailto:varnish-misc-bounces%2Bthierry.magnien">varnish-misc-bounces+thierry.magnien</a>=<a href="mailto:sfr.com@varnish-cache.org">sfr.com@varnish-cache.org</a>] De la part de Per Buer<br>

Envoyé : vendredi 30 août 2013 13:36<br>
À : Tharanga Abeyseela<br>
Cc : Varnish misc<br>
Objet : Re: Varnish round-robin loadbalancing with Virtualhost (Namebased)<br>
<div><div class="h5"><br>
Hi Tharanga,<br>
<br>
You seem not to understand. Varnish will just pass the host header in the request to the backend you specify. Looking at the VCL you provided you put both the backends into one director. This is probably not what you want to do.<br>

<br>
Try removing the director. Name the directors xxx and yyy and have the VCL look like.<br>
<br>
sub vcl_recv {<br>
    if (req.http.host ~ "<a href="http://xxx.com" target="_blank">xxx.com</a>") {<br>
        req.backend = xxx;<br>
    } else if (..<br>
<br>
}<br>
Also the next bit doesn't make sense:<br>
if (req.request)<br>
    {<br>
    return(pass);<br>
    }<br>
<br>
}<br>
<br>
On Fri, Aug 30, 2013 at 10:42 AM, Tharanga Abeyseela <<a href="mailto:tharanga.abeyseela@gmail.com">tharanga.abeyseela@gmail.com</a>> wrote:<br>
Hi,<br>
<br>
Actually i tried that link, still it is not working. it should work for a ip based virtual host, but namebased virtual host is not working.<br>
becuase main request coming to varnish/80 and varnish should redirect the traffic to the backend server based on my round-robin director. when you resolve dns for those two hosts (<a href="http://xxx.com" target="_blank">xxx.com</a> and <a href="http://yyy.com" target="_blank">yyy.com</a>) it reuturns the same IP. that is 192.168.0.100. But there should be a way to send the host-header to apache. Not sure how it works here. But when i use different server (192,168.0.200/ <a href="http://zzz.com" target="_blank">zzz.com</a>) it works without any issue, it roundrobin the traffic. This is an issue with namebased virtualhost.<br>

varnish recevie the traffic (<a href="http://cluster.com" target="_blank">cluster.com</a> is my  varnish server), then it use it vcl to redirect based on my round-robin setting. but how it can send the traffic to the correct virtualhost. because it gets only the same IP address from the DNS. I managed to change the default behaviour by forcefully setting the host-header as follows to my other virtualhost(yyy..com)<br>

set.req.host="<a href="http://yyy.com" target="_blank">yyy.com</a>" ;<br>
then all request went to <a href="http://yyy.com" target="_blank">yyy.com</a> instead of <a href="http://xxx.com" target="_blank">xxx.com</a>. but what i want is  a round-robin fashio...to send traffic. first req to <a href="http://xxx.com/" target="_blank">xxx.com/</a> 2nd req to <a href="http://yyy.com" target="_blank">yyy.com</a> and so on..<br>

<br>
I was trying to find some resourses on the net, stackoverflow etc..but no luck yet.<br>
<br>
Thanks again for your help<br>
Cheers,<br>
Tharanga<br>
<br>
On Fri, Aug 30, 2013 at 5:05 PM, Per Buer <<a href="mailto:perbu@varnish-software.com">perbu@varnish-software.com</a>> wrote:<br>
Hi Tharanga,<br>
<br>
You seem to be a bit confused about how the directors and backends work in Varnish. Please read this:<br>
<br>
<a href="https://www.varnish-cache.org/docs/trunk/users-guide/vcl-backends.html#backends-and-virtual-hosts-in-varnish" target="_blank">https://www.varnish-cache.org/docs/trunk/users-guide/vcl-backends.html#backends-and-virtual-hosts-in-varnish</a><br>

<br>
Note that the .host property of the backend has NOTHING to do with the virtual host.<br>
<br>
On Fri, Aug 30, 2013 at 2:02 AM, Tharanga Abeyseela <<a href="mailto:tharanga.abeyseela@gmail.com">tharanga.abeyseela@gmail.com</a>> wrote:<br>
Hi Per,<br>
Thanks for the reply. Actually my set up looks like this.<br>
<br>
<a href="http://cluster.com" target="_blank">cluster.com</a> - 192.168.0.200 (varnish/port 80)<br>
<a href="http://xxx.com" target="_blank">xxx.com</a> - 192.168.0.100  (apache,namebased vhost/8080 - backendname - website)<br>
<a href="http://yyy.com" target="_blank">yyy.com</a> - 192.168.0.100  (apache,namebased vhost/8080 -backendname - api)<br>
<a href="http://cluster.com" target="_blank">cluster.com</a> is the varnish server and front-end connections coming to this and rewrite to other defined back-ends (round-robin based balancing)<br>
<br>
<br>
<br>
backend website {<br>
    .host = "<a href="http://xxx.com" target="_blank">xxx.com</a>";<br>
    .port = "8080";<br>
<br>
}<br>
backend api {<br>
    .host = "<a href="http://yyy.com" target="_blank">yyy.com</a>";<br>
    .port = "8080";<br>
<br>
}<br>
<br>
director clust round-robin {<br>
{ .backend = api;  }<br>
{ .backend = website;  }<br>
<br>
}<br>
<br>
sub vcl_recv {<br>
set req.backend = clust;<br>
if (req.request)<br>
    {<br>
    return(pass);<br>
    }<br>
<br>
}<br>
<br>
when i hit the <a href="http://cluster.com" target="_blank">cluster.com</a> , it is always going to <a href="http://xxx.com" target="_blank">xxx.com</a>, but what i need to do is first request go to <a href="http://xxx.com" target="_blank">xxx.com</a> second request <a href="http://yyy.com" target="_blank">yyy.com</a> and so on...when i add another server (different host/different IP say <a href="http://192.168.0.111/zzz.com" target="_blank">192.168.0.111/zzz.com</a>, and a different backend) , it goes like this<br>

first request - <a href="http://xxx.com" target="_blank">xxx.com</a><br>
second request - <a href="http://xxxx.com" target="_blank">xxxx.com</a><br>
third request - <a href="http://zzz.com" target="_blank">zzz.com</a><br>
<br>
but i can change the default behavior by setting up set req.host = <a href="http://yyy.com" target="_blank">yyy.com</a> and then it will goes to<br>
first request - <a href="http://yyy.com" target="_blank">yyy.com</a><br>
second request - <a href="http://yyy.com" target="_blank">yyy.com</a><br>
third request - <a href="http://zzz.com" target="_blank">zzz.com</a><br>
this is something to do with the host-header forwarding to the correct back-end. how should i add that functionality to the vcl_recv ?<br>
appreciate your help on this, this is working perfectly with other servers (different servers, not with namebased vhosts)<br>
cheers,<br>
Tharanga <br>
<br>
 <br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
On Thu, Aug 29, 2013 at 11:58 PM, Per Buer <<a href="mailto:perbu@varnish-software.com">perbu@varnish-software.com</a>> wrote:<br>
Hi mate,<br>
<br>
On Thu, Aug 29, 2013 at 3:17 PM, Tharanga Abeyseela <<a href="mailto:tharanga.abeyseela@gmail.com">tharanga.abeyseela@gmail.com</a>> wrote:<br>
(..)<br>
<br>
But how should i send host-headers to varnish to redirect to the correct server, This is always going to <a href="http://xxx.com" target="_blank">xxx.com</a>.<br>
<br>
You don't. :-)<br>
<br>
You need to dispatch the request to the right backend in vcl_recv and have the backend handle that host. You could start rewriting the host in vcl_recv, but I would advise against it. <br>
<br>
So, if you have two vhosts handled by "website" you just set that as the backend in vcl_recv.<br>
<br>
--<br>
<br>
</div></div><div class="im">Per Buer<br>
CTO | Varnish Software AS<br>
Phone: <a href="tel:%2B47%20958%2039%20117" value="+4795839117">+47 958 39 117</a> | Skype: per.buer<br>
We Make Websites Fly!<br>
<br>
Winner of the Red Herring Top 100 Europe Award 2013<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>--<br>
<div class="im"><br>
Per Buer<br>
CTO | Varnish Software AS<br>
Phone: <a href="tel:%2B47%20958%2039%20117" value="+4795839117">+47 958 39 117</a> | Skype: per.buer<br>
We Make Websites Fly!<br>
<br>
Winner of the Red Herring Top 100 Europe Award 2013<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>--<br>
<div class="HOEnZb"><div class="h5"><br>
Per Buer<br>
CTO | Varnish Software AS<br>
Phone: <a href="tel:%2B47%20958%2039%20117" value="+4795839117">+47 958 39 117</a> | Skype: per.buer<br>
We Make Websites Fly!<br>
<br>
Winner of the Red Herring Top 100 Europe Award 2013<br>
<br>
<br>
<br>
</div></div></blockquote></div><br></div>