]> git.pld-linux.org Git - packages/apache.git/commitdiff
Move SSLProtocol and SSLCipherSuite directives to be global default
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Wed, 10 Apr 2013 13:12:57 +0000 (15:12 +0200)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Wed, 10 Apr 2013 13:12:57 +0000 (15:12 +0200)
(which can overrided on per vhost basis).

apache-mod_ssl.conf

index 949bbb07f78f27c2c07899fbd07e4b8f011cfbc3..4da2c7da308745a4b384653f3e040ffb0f215cb5 100644 (file)
@@ -58,15 +58,6 @@ SSLPassPhraseDialog  builtin
 SSLSessionCache                shmcb:/var/cache/httpd/ssl_scache(512000)
 SSLSessionCacheTimeout  300
 
-##
-## SSL Virtual Host Context
-##
-
-<VirtualHost _default_:443>
-#   SSL Engine Switch:
-#   Enable/Disable SSL for this virtual host.
-SSLEngine on
-
 #   Usable SSL protocol flavors:
 #   This directive can be used to control the SSL protocol flavors mod_ssl
 #   should use when establishing its server environment. Clients then can only
@@ -78,6 +69,16 @@ SSLProtocol all -SSLv2
 #   See the mod_ssl documentation for a complete list.
 SSLCipherSuite ALL:!ADH:!EXP:!LOW:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
 
+
+##
+## SSL Virtual Host Context
+##
+
+<VirtualHost _default_:443>
+#   SSL Engine Switch:
+#   Enable/Disable SSL for this virtual host.
+SSLEngine on
+
 #   Server Certificate:
 #   Point SSLCertificateFile at a PEM encoded certificate.  If
 #   the certificate is encrypted, then you will be prompted for a
This page took 0.052537 seconds and 4 git commands to generate.