(0006749)
|
stbu
|
04-25-17 12:10
|
|
I'm not a Caucho employee, but a 14+ Years Resin user. I would recommend you these three system-properties in your resin.xml within the <cluster>:
<cluster id="app">
...
<!-- Java 8 JSSE Settings -->
<system-property jdk.tls.ephemeralDHKeySize="2048"/>
<system-property jdk.tls.rejectClientInitiatedRenegotiation="true"/>
<system-property sun.security.ssl.allowUnsafeRenegotiation="false"/>
<system-property sun.security.ssl.allowLegacyHelloMessages="false"/>
All of these four system properties are related to increase your JSSE SSL/TLS Setup.
I'll also reply on the bug 0006052 - you might want to test your setup afterwards with https://www.ssllabs.com/ssltest/analyze.html [^]
Our Setup, using Java 8 and JSSE, receives a grade A. |
|