[java-idp-jetty-base] branch 9.3 updated: IDP-1074 - Bugs in Jetty config installed with MSI Installer
Scott Cantor
cantor.2 at osu.edu
Tue Oct 25 14:47:26 EDT 2016
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch 9.3
in repository java-idp-jetty-base.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-jetty-base.git;a=commit;h=efa84a52e766ac9f810ebd0477d68dd0720d8253
The following commit(s) were added to refs/heads/9.3 by this push:
new efa84a5 IDP-1074 - Bugs in Jetty config installed with MSI Installer
new 7a03b50 Merge branch '9.3' of git at shibboleth.net:java-idp-jetty-base into 9.3
efa84a5 is described below
commit efa84a52e766ac9f810ebd0477d68dd0720d8253
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Oct 25 14:46:44 2016 -0400
IDP-1074 - Bugs in Jetty config installed with MSI Installer
https://issues.shibboleth.net/jira/browse/IDP-1074
Fixed excluded TLS protocols.
---
src/main/resources/jetty-base/etc/jetty-backchannel.xml | 4 +++-
src/main/resources/jetty-base/etc/jetty-ssl-context.xml | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/jetty-base/etc/jetty-backchannel.xml b/src/main/resources/jetty-base/etc/jetty-backchannel.xml
index 30fdfc7..2e080b4 100644
--- a/src/main/resources/jetty-base/etc/jetty-backchannel.xml
+++ b/src/main/resources/jetty-base/etc/jetty-backchannel.xml
@@ -19,7 +19,9 @@
<Set name="useCipherSuitesOrder">true</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">
diff --git a/src/main/resources/jetty-base/etc/jetty-ssl-context.xml b/src/main/resources/jetty-base/etc/jetty-ssl-context.xml
index 8ec9a03..e9ecd3c 100644
--- a/src/main/resources/jetty-base/etc/jetty-ssl-context.xml
+++ b/src/main/resources/jetty-base/etc/jetty-ssl-context.xml
@@ -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">
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list