[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Page Not Found Errors / solution?
- Subject: Re: [cobalt-users] Page Not Found Errors / solution?
- From: cobalt@xxxxxxxxxxxxx
- Date: Tue Sep 10 06:30:01 2002
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
On 10 Sep 2002 at 8:45, Mike At Spy wrote:
>
> A friend of mine with a RAQ4 found this through the sun knowledge base, but
> it doesn't seem to work for constant 'page not found' errors I get. It
> seems to be choking on the line 'downgrade-1.0 force-response-1.0' - does
> anyone know anything about this?
>
<snip>
>
> $PerlConfig .= "Listen $ip:443\n";
> $PerlConfig .= "<VirtualHost $ip:443>\n";
> $PerlConfig .= "SetEnvIf User-Agent \.*MSIE.*\\n";
> $PerlConfig .= "nokeepalive ssl-unclean-shutdown\n";
> $PerlConfig .= "downgrade-1.0 force-response-1.0\n";
> $PerlConfig .= "SSLengine on\n";
> $PerlConfig .= "SSLCertificateFile /home/sites/$group/certs/certificate\n";
> $PerlConfig .= "SSLCertificateKeyFile /home/sites/$group/certs/key\n";
> $PerlConfig .= join('', @ssl_conf);
>
If anyone else doesn't know this, the above is a fix for MS Internet
Explorer's bugging SSL implementation.
I have successfully implemented this, but the code in my httpd.conf
is slightly different (just the one line is different from above):
$PerlConfig .= "SetEnvIf User-Agent \".*MSIE.*\" \\n";
I.E. There are two quotes missing:
\".*MSIE.*\"
not
\.*MSIE.*\
Let us know if this works.
Ian
--