crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs

t5.conf (471B)


      1 service test {
      2     port 10001;
      3     type http;
      4     bindto any;
      5     revivinginterval 5;
      6     dispatchmode bysize;
      7     connectiontimeout 600;
      8     verbosity on;
      9 
     10     backend a {
     11         server localhost;
     12         port 10000;
     13         weight 2;
     14         decay 5;
     15     }
     16 
     17     backend b {
     18         server localhost;
     19         port 10000;
     20         weight 2;
     21         decay 5;
     22     }
     23 
     24     backend c {
     25         server localhost;
     26         port 10000;
     27         weight 3;
     28         decay 5;
     29 
     30     }
     31 }