Skip to content

Commit

Permalink
Fix the SSL protocol issue
Browse files Browse the repository at this point in the history
  • Loading branch information
muratugureminoglu authored Dec 11, 2023
1 parent eaed8ba commit 7bee544
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 7bee544

Please sign in to comment.