mod_ssl: don't use the default OpenSSL cipher suite in ssl.conf (#1109119)
Resolves: rhbz#1109119
This commit is contained in:
parent
2d734473b0
commit
c0bdfa464b
@ -14,7 +14,7 @@
|
|||||||
Summary: Apache HTTP Server
|
Summary: Apache HTTP Server
|
||||||
Name: httpd
|
Name: httpd
|
||||||
Version: 2.4.9
|
Version: 2.4.9
|
||||||
Release: 4%{?dist}
|
Release: 5%{?dist}
|
||||||
URL: http://httpd.apache.org/
|
URL: http://httpd.apache.org/
|
||||||
Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
|
Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
|
||||||
Source1: index.html
|
Source1: index.html
|
||||||
@ -624,6 +624,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_rpmconfigdir}/macros.d/macros.httpd
|
%{_rpmconfigdir}/macros.d/macros.httpd
|
||||||
|
|
||||||
%changelog
|
%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
|
* 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
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
8
ssl.conf
8
ssl.conf
@ -75,9 +75,11 @@ SSLEngine on
|
|||||||
SSLProtocol all -SSLv2
|
SSLProtocol all -SSLv2
|
||||||
|
|
||||||
# SSL Cipher Suite:
|
# SSL Cipher Suite:
|
||||||
# List the ciphers that the client is permitted to negotiate.
|
# List the ciphers that the client is permitted to negotiate.
|
||||||
# See the mod_ssl documentation for a complete list.
|
# See the mod_ssl documentation for a complete list.
|
||||||
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
|
# 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:
|
# Speed-optimized SSL Cipher configuration:
|
||||||
# If speed is your main concern (on busy HTTPS servers e.g.),
|
# If speed is your main concern (on busy HTTPS servers e.g.),
|
||||||
|
Loading…
Reference in New Issue
Block a user