Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
1 answer
178 views

SSL lock invalid certificate

So I installed a self signed root certificate on my windows and then accessed my domain using https, chrome acknowledges the certificate from my domain but still has a not secure error instead of ...
user1074935's user avatar
0 votes
1 answer
1k views

How can I verify that an SSL certificate file matches the key file?

I recently received an error that my SSL certificate did not match the private key. How can I validate that the cert matches the key?
Moshe's user avatar
  • 1,301
1 vote
1 answer
1k views

How to generate a X509 certifcate for testing with Certbot

I don't understand how to use Certbot. I tried: sudo certbot certonly --email [email protected] --webroot -w . -d chris.ca and it tells me: IMPORTANT NOTES: - The following errors were reported by ...
Jenia Be Nice Please's user avatar
0 votes
1 answer
5k views

How to create SSL certificate with multiple DNS entries, signed with my own CA certificate

I need help creating SSL certificate with multiple subjectAltNames, signed with my own selfbrewed CA certificate. What I need: I'm on OSX 10.10.5 I have myCA.cer which I use to sign another SSL ...
drew1kun's user avatar
  • 2,167
9 votes
4 answers
57k views

SSLCipherSuite settings in Apache for supporting TLS 1.0, 1.1 and 1.2

I have an Apache 2.4.7 web server running multiple domain names using a single IP address. As a result of the Poodle vulnerability, I added the following SSLCipherSuite line. It worked fine for a ...
Kristian's user avatar
  • 320
4 votes
0 answers
4k views

Establish https on nonstandard port

I'm trying to estamblish https on port 55434 (different than standard 443). My nginx configuration looks like this: server { server_name example.org; listen 55434 ssl; ssl ...
majkel's user avatar
  • 49