How to add ciphers in newer version (V8.*).
– Add this cipher in the server.xml file.
For reference, please follow the file path: (D:\Onprem8.2.0\tools\apache-tomcat-11.0.6\conf\server.xml)
<Connector port="443"
protocol="org.apache.coyote.http1
1.Http11NioProtocol"
SSLEnabled="true"
maxThreads="200"
scheme="https"
secure="true"
connectionTimeout="20000"
useServerCipherSuitesOrder="true"
clientAuth="false"
sslProtocol="TLS">
<SSLHostConfig protocols="TLSv1.2,TLSv1.3"
honorCipherOrder="true"
ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384">
<Certificate certificateKeystoreFile="D:\AutomationEdge_Release_8.2.0 (1)\apache-tomcat-11.0.6\conf\aeserver.jks"
certificateKeystorePassword="Edge@123"
type="RSA"/>
</SSLHostConfig>
</Connector>