dougm 01/11/15 13:35:19
Modified: perl-framework/t/conf/ssl ssl.conf.in Log: move ssl cert/key directives and the like into the base config so other VirtualHosts can enable ssl without duplicating this config Revision Changes Path 1.9 +13 -13 httpd-test/perl-framework/t/conf/ssl/ssl.conf.in Index: ssl.conf.in =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/t/conf/ssl/ssl.conf.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ssl.conf.in 2001/10/05 01:11:35 1.8 +++ ssl.conf.in 2001/11/15 21:35:19 1.9 @@ -46,19 +46,6 @@ SSLLog @ServerRoot@/logs/ssl_engine_log #SSLLogLevel debug -## -## SSL Virtual Host Context -## - -<VirtualHost _default_:@ssl_module_name@> - -# General setup for the virtual host -#ErrorLog logs/error_log -#TransferLog logs/access_log -# SSL Engine Switch: -# Enable/Disable SSL for this virtual host. -SSLEngine on - # SSL Cipher Suite: # List the ciphers that the client is permitted to negotiate. # See the mod_ssl documentation for a complete list. @@ -109,6 +96,19 @@ # Makefile to update the hash symlinks after changes. #SSLCARevocationPath @ServerRoot@/conf/ssl/ssl.crl SSLCARevocationFile @ServerRoot@/conf/ssl/crl/ca-bundle.crl + +## +## SSL Virtual Host Context +## + +<VirtualHost _default_:@ssl_module_name@> + +# General setup for the virtual host +#ErrorLog logs/error_log +#TransferLog logs/access_log +# SSL Engine Switch: +# Enable/Disable SSL for this virtual host. +SSLEngine on # Client Authentication (Type): # Client certificate verification type and depth. Types are
