Update in-config docs
This commit is contained in:
parent
57abca11a8
commit
3fae719589
|
@ -207,9 +207,12 @@
|
||||||
<param name="tls-verify-depth" value="2"/>
|
<param name="tls-verify-depth" value="2"/>
|
||||||
<!-- If the tls-verify-policy is set to subjects_all or subjects_in this sets which subjects are allowed, multiple subjects can be split with a '|' pipe -->
|
<!-- If the tls-verify-policy is set to subjects_all or subjects_in this sets which subjects are allowed, multiple subjects can be split with a '|' pipe -->
|
||||||
<param name="tls-verify-in-subjects" value=""/>
|
<param name="tls-verify-in-subjects" value=""/>
|
||||||
<!-- TLS version ("sslv23" (default), "tlsv1"). NOTE: Phones may not work with TLSv1 -->
|
<!-- TLS version default: tlsv1,tlsv1.1,tlsv1.2 -->
|
||||||
<param name="tls-version" value="$${sip_tls_version}"/>
|
<param name="tls-version" value="$${sip_tls_version}"/>
|
||||||
|
|
||||||
|
<!-- TLS ciphers default: ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH -->
|
||||||
|
<param name="tls-ciphers" value="$${sip_tls_ciphers}"/>
|
||||||
|
|
||||||
<!-- turn on auto-flush during bridge (skip timer sleep when the socket already has data)
|
<!-- turn on auto-flush during bridge (skip timer sleep when the socket already has data)
|
||||||
(reduces delay on latent connections default true, must be disabled explicitly)-->
|
(reduces delay on latent connections default true, must be disabled explicitly)-->
|
||||||
<!--<param name="rtp-autoflush-during-bridge" value="false"/>-->
|
<!--<param name="rtp-autoflush-during-bridge" value="false"/>-->
|
||||||
|
|
|
@ -270,10 +270,19 @@
|
||||||
<X-PRE-PROCESS cmd="set" data="default_provider_contact=5000"/>
|
<X-PRE-PROCESS cmd="set" data="default_provider_contact=5000"/>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
SIP and TLS settings. http://wiki.freeswitch.org/wiki/Tls
|
SIP and TLS settings. http://wiki.freeswitch.org/wiki/Tls
|
||||||
-->
|
|
||||||
<X-PRE-PROCESS cmd="set" data="sip_tls_version=tlsv1"/>
|
valid options: sslv2,sslv3,sslv23,tlsv1,tlsv1.1,tlsv1.2
|
||||||
|
|
||||||
|
default: tlsv1,tlsv1.1,tlsv1.2
|
||||||
|
-->
|
||||||
|
<X-PRE-PROCESS cmd="set" data="sip_tls_version=tlsv1,tlsv1.1,tlsv1.2"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
TLS cipher suite: default ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH
|
||||||
|
-->
|
||||||
|
<X-PRE-PROCESS cmd="set" data="sip_tls_ciphers=ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH"/>
|
||||||
|
|
||||||
<!-- Internal SIP Profile -->
|
<!-- Internal SIP Profile -->
|
||||||
<X-PRE-PROCESS cmd="set" data="internal_auth_calls=true"/>
|
<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=5060"/>
|
||||||
|
|
Loading…
Reference in New Issue