components/apache24/patches/ssl.conf.patch
author Petr Sumbera <petr.sumbera@oracle.com>
Wed, 22 Jul 2015 05:12:12 -0700
changeset 4697 2be298b79293
parent 3737 a71f444ba849
permissions -rw-r--r--
21485757 Upgrade Apache Web Server to version 2.4.16 21479241 problem in UTILITY/APACHE

Patch origin: in-house
Patch status: Solaris-specific; not suitable for upstream
Patch status: SSLProtocol part submitted to upstream

https://bz.apache.org/bugzilla/show_bug.cgi?id=57120

--- docs/conf/extra/httpd-ssl.conf.in
+++ docs/conf/extra/httpd-ssl.conf.in
@@ -24,9 +24,9 @@
 # Manual for more details.
 #
 #SSLRandomSeed startup file:/dev/random  512
-#SSLRandomSeed startup file:/dev/urandom 512
+SSLRandomSeed startup file:/dev/urandom 512
 #SSLRandomSeed connect file:/dev/random  512
-#SSLRandomSeed connect file:/dev/urandom 512
+SSLRandomSeed connect file:/dev/urandom 512
 
 
 #
@@ -42,6 +42,10 @@
 ##  the main server and all SSL-enabled virtual hosts.
 ##
 
+#   Enable FIPS 140 mode, this requires the openssl pkg mediator
+#   be set to install the fips-140 version of OpenSSL and mod_ssl.
+#SSLFIPS on 
+
 #   SSL Cipher Suite:
 #   List the ciphers that the client is permitted to negotiate,
 #   and that httpd will negotiate as the client of a proxied server.
@@ -73,11 +77,11 @@
 
 #   SSL Protocol support:
 #   List the protocol versions which clients are allowed to connect with.
-#   Disable SSLv3 by default (cf. RFC 7525 3.1.1).  TLSv1 (1.0) should be
+#   SSLv3 is disabled by default (cf. RFC 7525 3.1.1).  TLSv1 (1.0) should be
 #   disabled as quickly as practical.  By the end of 2016, only the TLSv1.2
 #   protocol or later should remain in use.
-SSLProtocol all -SSLv3
-SSLProxyProtocol all -SSLv3
+SSLProtocol all
+SSLProxyProtocol all
 
 #   Pass Phrase Dialog:
 #   Configure the pass phrase gathering process.
@@ -122,7 +126,7 @@
 
 #   General setup for the virtual host
 DocumentRoot "@exp_htdocsdir@"
-ServerName www.example.com:@@SSLPort@@
+ServerName 127.0.0.1:@@SSLPort@@
 ServerAdmin [email protected]
 ErrorLog "@exp_logfiledir@/error_log"
 TransferLog "@exp_logfiledir@/access_log"