[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Internal server error - Actinic
- Subject: Re: [cobalt-users] Internal server error - Actinic
- From: "Gerald Waugh" <gerald@xxxxxxxxx>
- Date: Thu Jul 12 07:04:08 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
"Donald Atkins" <datkins23@xxxxxxxxx> wrote
> What kind of browser are you using to view your sites? I had a problem with a
> specific verison of IE and SSL on my server. Somewhere deep in the archives
there is
> a "fix" for http.conf to byoass the IE bug.
>
$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";
I had to do the fix: I believe it is the three lines that start with
SetEnvIf User-Agent \".*MSIE.*\" \\n";
Anyway look at hour /etc/httpd/conf/httpd.conf
cp to another name to save it
then add the three lines.
Gerald