You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by do...@apache.org on 2002/04/01 21:40:13 UTC

cvs commit: httpd-test/perl-framework/t/conf/ssl proxyssl.conf.in

dougm       02/04/01 11:40:13

  Modified:    perl-framework/t/conf/ssl proxyssl.conf.in
  Log:
  setup another vhost for proxyssl with SSLEngine On so we can test
  https <-> https
  
  Revision  Changes    Path
  1.7       +20 -0     httpd-test/perl-framework/t/conf/ssl/proxyssl.conf.in
  
  Index: proxyssl.conf.in
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/t/conf/ssl/proxyssl.conf.in,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- proxyssl.conf.in	30 Mar 2002 06:46:52 -0000	1.6
  +++ proxyssl.conf.in	1 Apr 2002 19:40:13 -0000	1.7
  @@ -1,6 +1,26 @@
   <IfModule mod_proxy.c>
   
  +    #here we can test http <-> https
       <VirtualHost proxyssl>
  +        #these are not on by default in the 1.x based mod_ssl
  +        <IfDefine APACHE2>
  +            SSLProxyEngine On
  +            SSLProxyMachineCertificateFile @SSLCA@/asf/proxy/client_ok.pem
  +            SSLProxyCACertificateFile @SSLCA@/asf/certs/ca.crt
  +            SSLProxyVerify on
  +            SSLProxyCARevocationFile @SSLCA@/asf/crl/ca-bundle.crl
  +        </IfDefine>
  +
  +
  +        ProxyPass        / https://@proxyssl_url@/
  +        ProxyPassReverse / https://@proxyssl_url@/
  +    </VirtualHost>
  +
  +
  +    #here we can test https <-> https
  +    <VirtualHost proxyssl_ssl>
  +        SSLEngine on
  +
           #these are not on by default in the 1.x based mod_ssl
           <IfDefine APACHE2>
               SSLProxyEngine On