diff options
| author | Joe Orton <jorton@redhat.com> | 2014-06-20 10:54:36 +0100 |
|---|---|---|
| committer | Joe Orton <jorton@redhat.com> | 2014-06-20 10:54:36 +0100 |
| commit | c0bdfa464b7c8b7d202b7a7ab31bc0e4b06a33fc (patch) | |
| tree | 5e453c3d9a6a344d130424bf82fa4c615fde307a | |
| parent | 2d734473b00907829ba68de53c0025618aba3e07 (diff) | |
| download | httpd-c0bdfa464b7c8b7d202b7a7ab31bc0e4b06a33fc.tar.gz httpd-c0bdfa464b7c8b7d202b7a7ab31bc0e4b06a33fc.tar.xz httpd-c0bdfa464b7c8b7d202b7a7ab31bc0e4b06a33fc.zip | |
mod_ssl: don't use the default OpenSSL cipher suite in ssl.conf (#1109119)
Resolves: rhbz#1109119
| -rw-r--r-- | httpd.spec | 5 | ||||
| -rw-r--r-- | ssl.conf | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -14,7 +14,7 @@ Summary: Apache HTTP Server Name: httpd Version: 2.4.9 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://httpd.apache.org/ Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2 Source1: index.html @@ -624,6 +624,9 @@ rm -rf $RPM_BUILD_ROOT %{_rpmconfigdir}/macros.d/macros.httpd %changelog +* Fri Jun 20 2014 Joe Orton <jorton@redhat.com> - 2.4.9-5 +- mod_ssl: don't use the default OpenSSL cipher suite in ssl.conf (#1109119) + * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild @@ -75,9 +75,11 @@ SSLEngine on SSLProtocol all -SSLv2 # SSL Cipher Suite: -# List the ciphers that the client is permitted to negotiate. -# See the mod_ssl documentation for a complete list. -SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 +# List the ciphers that the client is permitted to negotiate. +# See the mod_ssl documentation for a complete list. +# By leaving this directive commented out, the system-wide OpenSSL +# default is used. See update-crypto-policies(8) for more details. +#SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 # Speed-optimized SSL Cipher configuration: # If speed is your main concern (on busy HTTPS servers e.g.), |
