Skip to content
Snippets Groups Projects
Commit ea911c0f authored by Richard Alam's avatar Richard Alam
Browse files

- changed conference pattern to 7{4} as it is what's dynamically generated by demo

 - switch SIP ports in vars.xml:
   - Internal to port 5090 from port 5060. 5060 is assigned to external sip profile
     as bbb-voice only connects to 5060. Tried fixing bbb-voice but can't figure it out.
   - Use 5090 instead of 5080 since 5080 is used by Red5.
parent 365da7d6
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@
<!-- BBB testing -->
<extension name="bbb_conferences">
<condition field="destination_number" expression="^(8\d{4})$">
<condition field="destination_number" expression="^(7\d{4})$">
<action application="answer"/>
<action application="conference" data="$1@wideband"/>
<!-- <action application="conference" data="$1@wideband"/> -->
......
......@@ -227,14 +227,14 @@
<!-- Internal SIP Profile -->
<X-PRE-PROCESS cmd="set" data="internal_auth_calls=true"/>
<X-PRE-PROCESS cmd="set" data="internal_sip_port=5060"/>
<X-PRE-PROCESS cmd="set" data="internal_sip_port=5090"/>
<X-PRE-PROCESS cmd="set" data="internal_tls_port=5061"/>
<X-PRE-PROCESS cmd="set" data="internal_ssl_enable=false"/>
<X-PRE-PROCESS cmd="set" data="internal_ssl_dir=$${base_dir}/conf/ssl"/>
<!-- External SIP Profile -->
<X-PRE-PROCESS cmd="set" data="external_auth_calls=false"/>
<X-PRE-PROCESS cmd="set" data="external_sip_port=5080"/>
<X-PRE-PROCESS cmd="set" data="external_sip_port=5060"/>
<X-PRE-PROCESS cmd="set" data="external_tls_port=5081"/>
<X-PRE-PROCESS cmd="set" data="external_ssl_enable=false"/>
<X-PRE-PROCESS cmd="set" data="external_ssl_dir=$${base_dir}/conf/ssl"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment