From: Joshua Slive Date: Sat, 2 Apr 2005 18:50:32 +0000 (+0000) Subject: Move ssl conf file to extra/ directory and remove the X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=849b606235e98e853349c49c0bb036e263a34cb5;p=thirdparty%2Fapache%2Fhttpd.git Move ssl conf file to extra/ directory and remove the nonsense: either you want SSL, or you don't (for 99% of cases). Also add the correct relative directory pointer to the other extra/ Includes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/simple-conf@159791 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/conf/ssl-std.conf.in b/docs/conf/extra/httpd-ssl.conf similarity index 97% rename from docs/conf/ssl-std.conf.in rename to docs/conf/extra/httpd-ssl.conf index b1d0d3f0e9b..de4ee9a2d2e 100644 --- a/docs/conf/ssl-std.conf.in +++ b/docs/conf/extra/httpd-ssl.conf @@ -21,18 +21,11 @@ # block. So, if available, use this one instead. Read the mod_ssl User # Manual for more details. # -# Note: This must come before the container to support -# starting without SSL on platforms with no /dev/random equivalent -# but a statically compiled-in mod_ssl. -# -SSLRandomSeed startup builtin -SSLRandomSeed connect builtin #SSLRandomSeed startup file:/dev/random 512 #SSLRandomSeed startup file:/dev/urandom 512 #SSLRandomSeed connect file:/dev/random 512 #SSLRandomSeed connect file:/dev/urandom 512 - # # When we also provide SSL we have to listen to the @@ -236,5 +229,3 @@ CustomLog @exp_logfiledir@/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" - - diff --git a/docs/conf/httpd-std.conf.in b/docs/conf/httpd-std.conf.in index 2d859ff0891..1c628b40102 100644 --- a/docs/conf/httpd-std.conf.in +++ b/docs/conf/httpd-std.conf.in @@ -756,13 +756,6 @@ ServerSignature On # -# -# Bring in additional module-specific configurations -# - - Include @rel_sysconfdir@/ssl.conf - - ### Section 3: Virtual Hosts # @@ -806,10 +799,22 @@ ServerSignature On # here and change as necessary. # Multi-language error messages -# Include extra/httpd-multilang-error.conf +# Include @relsysconfdir@/extra/httpd-multilang-error.conf # Fancy directory listings -# Include extra/httpd-autoindex.conf +# Include @relsysconfdir@/extra/httpd-autoindex.conf # Language settings -# Include extra/httpd-languages.conf \ No newline at end of file +# Include @relsysconfdir@/extra/httpd-languages.conf + +# +# Secure (SSL/TLS) connections +# Include @rel_sysconfdir@/extra/httpd-ssl.conf +# Note: The following must must be present to support +# starting without SSL on platforms with no /dev/random equivalent +# but a statically compiled-in mod_ssl. +# + +SSLRandomSeed startup builtin +SSLRandomSeed connect builtin + \ No newline at end of file