The --cert option asks for a client "certificate", not for a server
certificate.
That's not your parameter. :-)
You need to use the --cacert parameter, and well, AFAIR, you
cannot use in general a server with a self signed cert in this case:
Create your own ca (this is just as simple as a sel
Philippe de Rochambeau wrote:
> Hello,
>
> I have just generated a self-signed certificate as follows:
>
> openssl x509 -req -days 365 -in my.domain.csr -signkey my.domain.key
> -out my.domain.cert
>
> What format is my.domain.cert now in?
OpenSSL uses PEM format as default. There are options
t
Hello,
I have just generated a self-signed certificate as follows:
openssl x509 -req -days 365 -in my.domain.csr -signkey my.domain.key
-out my.domain.cert
What format is my.domain.cert now in?
I am asking this because I am trying to use this certificate with curl
as in
curl --cert my.dom