[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Internal server error - Actinic



"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