Skip to content

Commit

Permalink
Merge pull request #5917 from ant-media/fix_ssl_protocol_issue
Browse files Browse the repository at this point in the history
Fix  the SSL  protocol issue
  • Loading branch information
mekya authored Dec 20, 2023
2 parents eaed8ba + 7bee544 commit 32af48c
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/main/server/conf/jee-container.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,21 +73,21 @@
<property name="connectionProperties">
<map>
<entry key="sslEnabledProtocols" value="TLSv1.2" />
<entry key="useServerCipherSuitesOrder" value="true" />
<entry key="ciphers" value="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_DHE_RSA_WITH_AES_256_CCM_8,TLS_DHE_RSA_WITH_AES_256_CCM" />
<entry key="SSLCertificateFile" value="${http.ssl_certificate_file}" />
<entry key="SSLCertificateChainFile" value="${http.ssl_certificate_chain_file}" />
<entry key="SSLCertificateKeyFile" value="${http.ssl_certificate_key_file}" />
<entry key="clientAuth" value="false" />
<entry key="maxKeepAliveRequests" value="${http.max_keep_alive_requests}"/>
<entry key="keepAliveTimout" value="-1"/>
<entry key="useExecutor" value="true"/>
<entry key="maxThreads" value="${http.max_threads}"/>
<entry key="acceptorThreadCount" value="${http.acceptor_thread_count}"/>
<entry key="processorCache" value="${http.processor_cache}"/>
<entry key="relaxedQueryChars" value="{}" />
<entry key="sslEnabledProtocols" value="TLSv1.2" />
<entry key="SSLEnabled" value="true" />
<entry key="useServerCipherSuitesOrder" value="true" />
<entry key="ciphers" value="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_DHE_RSA_WITH_AES_256_CCM_8,TLS_DHE_RSA_WITH_AES_256_CCM" />
<entry key="SSLCertificateFile" value="${http.ssl_certificate_file}" />
<entry key="SSLCertificateChainFile" value="${http.ssl_certificate_chain_file}" />
<entry key="SSLCertificateKeyFile" value="${http.ssl_certificate_key_file}" />
<entry key="clientAuth" value="false" />
<entry key="maxKeepAliveRequests" value="${http.max_keep_alive_requests}"/>
<entry key="keepAliveTimout" value="-1"/>
<entry key="useExecutor" value="true"/>
<entry key="maxThreads" value="${http.max_threads}"/>
<entry key="acceptorThreadCount" value="${http.acceptor_thread_count}"/>
<entry key="processorCache" value="${http.processor_cache}"/>
<entry key="relaxedQueryChars" value="{}" />
</map>
</property>
</bean>
Expand Down

0 comments on commit 32af48c

Please sign in to comment.