Browse Source

update the example with zones

3.17
karl anderson 12 years ago
parent
commit
85ec98bbef
1 changed files with 30 additions and 4 deletions
  1. +30
    -4
      config.ini

+ 30
- 4
config.ini View File

@ -1,9 +1,11 @@
; section are between [] = [section]
; key = value
; to comment add ";" in front of the line
[amqp]
uri = "amqp://guest:guest@127.0.0.1:5672"
;
;
; NOTE: You must add all your FreeSWITCH servers to the trusted ACLs
; if you are using zones!
;
[bigcouch]
compact_automatically = true
cookie = change_me
@ -13,13 +15,37 @@ port = 15984
; password = "supermegaexcellenttelephonyplatform"
admin_port = 15986
; Define your AMQPs and zones here
[zone]
name = zone_1
amqp_uri = "amqp://guest:guest@127.0.0.1:5672"
[zone]
name = zone_2
amqp_uri = "amqp://guest:guest@127.0.0.2:5672"
; Define your whistles here
[whistle_apps]
zone = zone_1
cookie = change_me
[whistle_apps]
host = apps002.2600hz.com
zone = zone_2
cookie = change_me
; Define your ecallmgr's here
[ecallmgr]
zone = zone_1
cookie = change_me
[ecallmgr]
host = apps002.2600hz.com
zone = zone_2
cookie = change_me
[log]
syslog = info
syslog = debug
console = notice
file = error

Loading…
Cancel
Save