]> TLD Linux GIT Repositories - packages/apache.git/commitdiff
- updated SSL ciphers, now we allow 128 bit, but no weak ciphers
authorMarcin Krol <hawk@tld-linux.org>
Fri, 6 Sep 2019 19:02:59 +0000 (21:02 +0200)
committerMarcin Krol <hawk@tld-linux.org>
Fri, 6 Sep 2019 19:02:59 +0000 (21:02 +0200)
- keep few variants of SSL ciphers for users to choose from

apache-mod_ssl.conf
apache.spec

index cc1a2a2e07ef9d60001213af5558358fc4f17824..ae1bdc95fa304740abd4c32b809dd9cfec73a463 100644 (file)
@@ -69,7 +69,26 @@ SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
 #   SSL Cipher Suite:
 #   List the ciphers that the client is permitted to negotiate.
 #   See the mod_ssl documentation for a complete list.
-SSLCipherSuite HIGH:!aNULL:!MD5:!3DES:!CAMELLIA128:!AES128:!RSA
+
+# High security: no weak ciphers, at least 256 bit
+# (except TLS_AES_128_GCM_SHA256 which is required by TLSv1.3)
+#SSLCipherSuite HIGH:!aNULL:!AES128:!ARIA128:!CAMELLIA128:!RSA:!SHA:!SHA256:!SHA384
+
+# If you don't care about TLSv1.3 requirements and don't want any 128 bit
+# cipher you can disable TLS_AES_128_GCM_SHA256 by uncommenting line below
+#SSLCipherSuite TLSv1.3 TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384
+
+# Strong security: no weak ciphers, at least 128 bit
+# Recommended setting if you are not paranoid
+SSLCipherSuite HIGH:!aNULL:!RSA:!SHA:!SHA256:!SHA384
+
+# Medium security: includes some weak ciphers, at least 256 bit
+# (except TLS_AES_128_GCM_SHA256 which is required by TLSv1.3)
+#SSLCipherSuite HIGH:!aNULL:!AES128:!ARIA128:!CAMELLIA128:!RSA
+
+# Low security: includes some weak ciphers, at least 128 bit
+#SSLCipherSuite HIGH:!aNULL:!RSA
+
 SSLHonorCipherOrder on
 SSLCompression off
 SSLSessionTickets off
index b0b5dede6dfd5a762d3068c69fe87d4c8d73ddeb..811b3dc3cf314a72343e45d112397198e74594fc 100644 (file)
@@ -36,7 +36,7 @@ Summary(ru.UTF-8):    Самый популярный веб-сервер
 Summary(tr.UTF-8):     Lider WWW tarayıcı
 Name:          apache
 Version:       2.4.41
-Release:       1
+Release:       2
 License:       Apache v2.0
 Group:         Networking/Daemons/HTTP
 Source0:       http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2