Created
October 18, 2014 12:10
-
-
Save sdorra/2e74715f7eff5d92a6eb to your computer and use it in GitHub Desktop.
SCM-Manager and the POODLE vulnerability
This file contains 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
<Arg> | |
<New class="org.eclipse.jetty.http.ssl.SslContextFactory"> | |
<Set name="excludeProtocols"> | |
<Array type="java.lang.String"> | |
<Item>SSLv2Hello</Item> | |
<Item>SSLv3</Item> | |
</Array> | |
</Set> | |
</New> | |
</Arg> |
This file contains 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
<Call name="addConnector"> | |
<Arg> | |
<New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector"> | |
<Arg> | |
<New class="org.eclipse.jetty.http.ssl.SslContextFactory"> | |
<Set name="excludeProtocols"> | |
<Array type="java.lang.String"> | |
<Item>SSLv2Hello</Item> | |
<Item>SSLv3</Item> | |
</Array> | |
</Set> | |
</New> | |
</Arg> | |
<Set name="Port">8181</Set> | |
<Set name="maxIdleTime">30000</Set> | |
<Set name="requestHeaderSize">16384</Set> | |
<Set name="keystore"><SystemProperty name="basedir" default="." />/conf/keystore.jks</Set> | |
<Set name="password">yourpassword</Set> | |
<Set name="keyPassword">yourpassword</Set> | |
<Set name="truststore"><SystemProperty name="basedir" default="." />/conf/keystore.jks</Set> | |
<Set name="trustPassword">yourpassword</Set> | |
</New> | |
</Arg> | |
</Call> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment