]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[configuration] Copy TLS ciphers from vars.xml even in Vanilla External 913/head
authorAlexander Traud <pabstraud@compuserve.com>
Fri, 16 Oct 2020 13:32:48 +0000 (15:32 +0200)
committerGitHub <noreply@github.com>
Fri, 16 Oct 2020 13:32:48 +0000 (15:32 +0200)
Previously, the configuration file vars.xml set the TLS Cipher Suites only for internal SIP profiles. External SIP profiles used the 'DEFAULT' set of the underlying OpenSSL. Now, external SIP profiles copy to the general setting of vars.xml as well. Of course, you can overwrite this anytime, for example, to use different sets for internal and external.

conf/vanilla/sip_profiles/external.xml

index e2d161d5983b7c4e0f2a9b4230122479d940a0bc..d9e312d78f94d5cd78e9fb2d15edb924cb90df65 100644 (file)
@@ -92,5 +92,7 @@
     <param name="tls-verify-in-subjects" value=""/>
     <!-- TLS version ("sslv23" (default), "tlsv1"). NOTE: Phones may not work with TLSv1 -->
     <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}"/>
   </settings>
 </profile>