Skip to content

Commit

Permalink
Fixes #8173: Disable SSLv3 in tomcat
Browse files Browse the repository at this point in the history
  • Loading branch information
ehelms committed Oct 29, 2014
1 parent db962f2 commit 3a1d536
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions templates/tomcat/server.xml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="want" SSLProtocol="TLS"
sslEnabledProtocol="TLSv1.2,TLSv1.1,TLSv1"
keystoreFile="conf/keystore"
truststoreFile="conf/keystore"
keystorePass="<%= scope.lookupvar("candlepin::keystore_password") %>"
Expand Down
1 change: 1 addition & 0 deletions templates/tomcat6/server.xml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="want" SSLProtocol="TLS"
sslEnabledProtocol="TLSv1.2,TLSv1.1,TLSv1"
keystoreFile="conf/keystore"
truststoreFile="conf/keystore"
keystorePass="<%= scope.lookupvar("candlepin::keystore_password") %>"
Expand Down

0 comments on commit 3a1d536

Please sign in to comment.