Created
May 28, 2015 20:11
-
-
Save mortenbra/6992f1ddc9c32079ae6a to your computer and use it in GitHub Desktop.
SSL Connector for Tomcat server.xml file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<-- setup SSL connector for Tomcat, and enabling only recommended protocols and ciphers --> | |
<Connector port="8443" protocol="HTTP/1.1" maxHttpHeaderSize="32767" URIEncoding="UTF-8" | |
maxThreads="150" connectionTimeout="20000" | |
SSLEnabled="true" scheme="https" secure="true" | |
sslProtocol="TLS" sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2" | |
ciphers="TLS_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA" | |
keystoreFile="/path/to/your_keystore.jks" keystorePass="yourpasswordhere" | |
clientAuth="false" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment