Hi,
how can i loadbalance only / (/index.html or whatever)
i tried
location / {
proxy_redirect off;
proxy_max_temp_file_size 0;
proxy_pass http://cluster2/$request_uri;
}
…
upstream cluster2 {
server www1.mydomain.de:80 weight=1;
server www2.mydomain.de:80 weight=50;
}
but this balances everything … bad…
I only want to balance things that i have defined like
location /bla
location /blubb/one
AND the Starpage
location /
I also tried
location ^/$
but with no Effekt…
How can i do that? Any Ideas?
Thanks!