Skip to content

Commit

Permalink
Exclude SSLv3 from Gitblit GO https protocols
Browse files Browse the repository at this point in the history
  • Loading branch information
gitblit committed Nov 4, 2014
1 parent b76107b commit 4aff001
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/gitblit/GitblitSslContextFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public GitblitSslContextFactory(String certAlias, File keyStore, File clientTrus
setKeyStorePassword(storePassword);
setTrustStorePath(clientTrustStore.getAbsolutePath());
setTrustStorePassword(storePassword);
addExcludeProtocols("SSLv3");

logger.info(" keyStorePath = " + keyStore.getAbsolutePath());
logger.info(" trustStorePath = " + clientTrustStore.getAbsolutePath());
Expand Down

0 comments on commit 4aff001

Please sign in to comment.