Skip to main content

All Questions

Tagged with
1 vote
0 answers
1k views

wget ERROR: cannot verify localhost's certificate, ..Self-signed certificate encountered

How Can I implement a secure https connection on ngnix I want to implement https on my localhost.I am running http server nginx on ubuntu 20.04 What I did was i issued the command sudo openssl req -...
Midhun Raj's user avatar
5 votes
1 answer
30k views

SSL certificate: EE certificate key too weak

$ curl -s https://goolge.ca | wc 0 0 0 $ curl -vs https://goolge.ca . . . * successfully set certificate verify locations: * CAfile: none CApath: /etc/ssl/certs * TLSv1.3 (OUT),...
xpt's user avatar
  • 8,851
0 votes
0 answers
4k views

Unable to establish SSL connection

When I try to download the package from this link I get a error; In curl; curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number In wget; --2020-10-27 19:17:40-- https://www....
maDeveloper's user avatar
1 vote
2 answers
144 views

Self-signing SSL certificate to secure web traffic on ClearOS on LINUX

I am very much a beginner when it comes to SSL certificate for securing website traffic. I am currently running a Linux version of ClearOS web server. Everything works as it should, but now I want to ...
ThN's user avatar
  • 1,288
1 vote
2 answers
4k views

Self signed certificate not trusted

I have created my own CA: openssl genrsa -out private/rootCA.key 2048 openssl req -batch -new -x509 -nodes -key private/rootCA.key -sha256 -days 1024 -config ./openssl.conf -out certs/rootCA.pem I ...
blueFast's user avatar
  • 2,736
1 vote
1 answer
714 views

How to setup https ssl on tomcat server by wildcard certification?

I'm trying to setup https://my.example.com to access Tomcat web linux server. The first step, I trying to use 'keytool' to generate one, it works, but the browser will show red lock icon(I try https:/...
Daniel YC Lin's user avatar
1 vote
0 answers
128 views

How can I verify on download that a site's SSL cert is for a host I trust?

Generally I want to be able to make an HTTPS connection to a site, and while negotiating the SSL check that: The cert is in every way valid for the host listed on the cert (unexpired, signed by ...
Parthian Shot's user avatar