For various reasons I have created a simple HTTP server, and added SSL support via OpenSSL. I\'m using self-signed certificates. IE, Firefox and Chrome happily load content as
You can also install trusted root CA certificates into OpenSSL in one of a number of ways:
I checked the man page of wget
, and --no-check-certificate
only seems to affect the server certificate. You need to specify your self-signed certificate as a valid CA certificate locally.
To do this, specify the certificate as --ca-certificate=...
in wget
and -CAfile
in the s_client
case.