~ubuntu-branches/ubuntu/trusty/keepalived/trusty

« back to all changes in this revision

Viewing changes to doc/samples/keepalived.conf.ci-linux

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt
  • Date: 2005-04-29 23:22:40 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050429232240-a8m3jtpi3cvuyyy2
Tags: 1.1.11-3
Added a warning about sarge kernels to README.Debian and 
the package description 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
! Configuration File for keepalived
2
 
! CI-LINUX configuration sample
3
 
 
4
 
global_defs {
5
 
   notification_email {
6
 
     lvs-alert@domain.com
7
 
   }
8
 
   notification_email_from email@domain.com
9
 
   smtp_server 192.168.200.1
10
 
   smtp_connect_timeout 30
11
 
   lvs_id CI-LNX
12
 
}
13
 
 
14
 
virtual_server 192.168.200.10 80 {
15
 
    delay_loop 10
16
 
    lb_algo wrr 
17
 
    lb_kind NAT
18
 
    protocol TCP
19
 
 
20
 
    sorry_server 192.168.200.200 80
21
 
 
22
 
    real_server 192.168.200.2 80 {
23
 
        weight 1
24
 
        CI-LINUX
25
 
    }
26
 
 
27
 
    real_server 192.168.200.3 80 {
28
 
        weight 1
29
 
        CI-LINUX
30
 
    }
31
 
    real_server 192.168.200.4 80 {
32
 
        weight 1
33
 
        CI-LINUX
34
 
    }
35
 
    real_server 192.168.200.5 80 {
36
 
        weight 1
37
 
        CI-LINUX
38
 
    }
39
 
}