On Fri, 29 Mar 2002, Doug MacEachern wrote:
> > PS: I now pass all httpd-test tests except these:
>
> http.t fails for me too, has for a while.
> proxy.t passes for me, but this is new stuff. anything interesting in the
> error_log?
Yes. The SSLProxyEngine on directive is missing from the config file. I
added it manually and it works. I expect something like this would do the
trick:
Index: proxyssl.conf.in
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/t/conf/ssl/proxyssl.conf.in,v
retrieving revision 1.1
diff -u -d -r1.1 proxyssl.conf.in
--- proxyssl.conf.in 29 Mar 2002 17:12:19 -0000 1.1
+++ proxyssl.conf.in 29 Mar 2002 23:54:15 -0000
@@ -9,6 +9,9 @@
<VirtualHost proxyssl>
ProxyPass / https://@proxyssl_url@/
ProxyPassReverse / https://@proxyssl_url@/
+ <IfDefine APACHE2>
+ SSLProxyEngine on
+ </IfDefine>
</VirtualHost>
</IfModule>
But does it need some <IfModule mod_ssl.c> crud in there too?
--Cliff
--------------------------------------------------------------
Cliff Woolley
[EMAIL PROTECTED]
Charlottesville, VA