Loadbalancing only /

Maxim Dounin mdounin at mdounin.ru
Fri Nov 6 18:47:22 MSK 2009


Hello!

On Fri, Nov 06, 2009 at 04:14:18PM +0100, "Günther Haslbeck" wrote:

> Hi,
> how can i loadbalance only / (/index.html or whatever)
> 
> i tried 
> 
>     location / {

-     location / {
+     location = / {

See http://wiki.nginx.org/NginxHttpCoreModule#location for 
details.

Maxim Dounin

>         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!
> -- 
> Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3.5 -
> sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser
> 





More information about the nginx mailing list