[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Thawte Certificates - connection issues?
- Subject: Re: [cobalt-users] Thawte Certificates - connection issues?
- From: "Gerald Waugh" <gerald@xxxxxxxxx>
- Date: Sun Sep 16 15:06:21 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> >> > Does anyone else have any 'problems' or 'issues' with SSL and Thawte
> >Certificates on RAQ3s?
> >> >
> >>
> >Try this patch in httpd.conf, (might help - might not)
> >
> > $PerlConfig .= "<VirtualHost $ip:443>\n";
> > # ======== begin ie patch ==========
> > $PerlConfig .= "SetEnvIf User-Agent \".*MSIE.*\" \\n";
> > $PerlConfig .= " nokeepalive ssl-unclean-shutdown\\n";
> > $PerlConfig .= " downgrade-1.0 force-response-1.0\n";
> > # ======== end ie patch ===========
> > $PerlConfig .= "SSLengine on\n";
> >
> >Cobalt uses PerlConfig in httpd.conf if you look at
>
>http://www.linuxdoc.org/LDP/solrhe/Securing-Optimizing-Linux-RH-Edition-v1.3/ch
a
> >p29sec245.html
> >You will find these same additions using httpd.conf directly
> >Another link is: (this one strikes home!
> >http://list.cobalt.com/pipermail/cobalt-users/2001-July/047623.html
> >
> Thanks for the links - one thing I notice from the postings, is that these
fixes were recommended for a Cobalt RAQ4 - can anyone confirm that this fix has
installed (at least without problems) on their RAQ3s?
>
> One more thing - am I to take it that this PerlConfig should be installed in
the httpd.conf at the beginning, at the end, or inside a <VIRTUALHOST>
</VIRTUALHOST> ??
>
Should work on a RaQ3 although I have SSL on RaQ4
But they both use the same Apache!
They go before the virtual sites.
look for the lines above and below the patch.
$PerlConfig .= "<VirtualHost $ip:443>\n";
#patch goes in here!
$PerlConfig .= "SSLengine on\n";
Gerald