fix for endless echo test connect modal

It seems like bbb-fsesl-akka uses the public IP to connect to Freeswitch ESL and gets rejected with
    mod_event_socket.c:2663 IP 77.145.44.15 Rejected by acl "loopback.custom"

This leads to an endless "Connecting to echo test" dialog, because Meteor waits for an VoiceCallStateEvtMsg event on redis which doesn't get emitted by bbb-fsesl-akka.
This commit is contained in:
chandi 2020-04-13 15:33:08 +02:00
parent ec3b5df112
commit 35db4a408f
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@
<node type="allow" cidr="127.0.0.1/32"/>
<node type="allow" cidr="10.0.0.0/8"/>
<node type="allow" cidr="192.168.0.0/16"/>
<node type="allow" cidr="$${external_ip_v4}/32"/>
</list>
<list name="deny_private_v6" default="allow">

View File

@ -60,6 +60,7 @@
-->
<X-PRE-PROCESS cmd="set" data="local_ip_v4=10.7.7.1"/>
<X-PRE-PROCESS cmd="set" data="local_ip_v6=::1"/>
<X-PRE-PROCESS cmd="set" data="external_ip_v4={{ .Env.EXTERNAL_IP }}"/>
<X-PRE-PROCESS cmd="set" data="domain={{ .Env.DOMAIN }}"/>
<X-PRE-PROCESS cmd="set" data="domain_name=$${domain}"/>
<X-PRE-PROCESS cmd="set" data="hold_music=local_stream://moh"/>