Re: [apache-ssl] Re: Installing a CA Certificate
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [apache-ssl] Re: Installing a CA Certificate



Hi,
   It is bug of 'loadCAcert.pl' script. Change it to:

...
open(CERT, "<$cert_path");
my $data = join '',<CERT>;	# this line was changed
close(CERT); 
...

I recommend you to upgrade your SSLeay to 0.9.0b. It has fixed many 0.8.0
bug (read mail history). But your bug only relates to 'loadCAcert.pl'. 

--Hamid R. Shahriari

On Mon, 17 Aug 1998, Maria Andrade wrote:

> 
>  	Hi all,
>  	I'm running Apache 1.2.6 with SSLeay 0.8.0.
>  	I created a CA certificate and I tried to install it in the 
>  browser. For it, I followed the instructions that Frederick J. Hirsch
>  gives in his article Introducing SSL and Certificates using SSLeay.
>  	First I saved the certicate in a file with a cacert suffix and
>  defined this suffix in the server srm.conf configuration file as
>  application/x-x509-ca-cert cacert. It didn't work.
>  	Then I used the cgi-script he also gives in the same article but i
>  get as answer: "Document contains no data"
>  	
>  	Could someone help me?
>  	Maria.