Skip to content

Commit

Permalink
Use correct syntax for excludeProtocols
Browse files Browse the repository at this point in the history
Switch excludeProtocols to use multiple <Item> elements instead of a single element with a space-delimited list.
  • Loading branch information
lpaulriddle authored Oct 25, 2016
1 parent 9883554 commit 103f1b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jetty-base/etc/jetty-ssl-context.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
<Set name="renegotiationAllowed">false</Set>
<Set name="excludeProtocols">
<Array type="String">
<Item>SSL SSLv2 SSLv3</Item>
<Item>SSL</Item>
<Item>SSLv2</Item>
<Item>SSLv3</Item>
</Array>
</Set>
<Set name="IncludeCipherSuites">
Expand Down

0 comments on commit 103f1b2

Please sign in to comment.