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/03/29 18:12:19 UTC

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

dougm       02/03/29 09:12:19

  Added:       perl-framework/t/conf/ssl proxyssl.conf.in
  Log:
  add config for testing proxy ssl support
  
  Revision  Changes    Path
  1.1                  httpd-test/perl-framework/t/conf/ssl/proxyssl.conf.in
  
  Index: proxyssl.conf.in
  ===================================================================
  <IfModule mod_proxy.c>
  
      #these are not on by default in the 1.x based mod_ssl
      <IfDefine APACHE2>
          #SSLProxyCACertificateFile @SSLCA@/asf/certs/ca.crt
          #SSLProxyVerify on
      </IfDefine>
  
      <VirtualHost proxyssl>
          ProxyPass        / https://@proxyssl_url@/
          ProxyPassReverse / https://@proxyssl_url@/
      </VirtualHost>
  
  </IfModule>