From 85ec98bbefd73ddf5eaf430cf07c62cbb61ea845 Mon Sep 17 00:00:00 2001 From: karl anderson Date: Tue, 11 Mar 2014 17:35:54 -0700 Subject: [PATCH] update the example with zones --- config.ini | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/config.ini b/config.ini index f957b5b..298cbcd 100644 --- a/config.ini +++ b/config.ini @@ -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 +