In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] writes:

>The only places where I use the backend child_2 is these:
>
>backend child_1 {
>        .host = "192.168.0.192";
>        .port = "80";
>}
>
>backend child_2 {
>        .host = "192.168.0.193";
>        .port = "80";
>}
>
>
>director www_director random {
>        {
>          .backend = child_1;
>          .weight = 1;
>        }
>
>        {
>          .backend = child_2;
>          .weight = 2;
>        }
>
>}
>
>I cant find any errors in that code and I dont think that im blind again :)

I don't see any errors either, and it works for me if I add to the above


        sub vcl_recv {
                set req.backend = www_director;
        }


-- 
Poul-Henning Kamp       | UNIX since Zilog Zeus 3.20
[EMAIL PROTECTED]         | TCP/IP since RFC 956
FreeBSD committer       | BSD since 4.3-tahoe    
Never attribute to malice what can adequately be explained by incompetence.
_______________________________________________
varnish-misc mailing list
varnish-misc@projects.linpro.no
http://projects.linpro.no/mailman/listinfo/varnish-misc

Reply via email to