Ssl not working

hello i have problem i want ssl on my ip symcon this made public and private key but not final does anyone know a way ?

Yes, you need to have proper certificate from a valid authority. Self signed certificates are not accepted by browsers by default.

paresy

I made it through the link

Create certificate
Certificates and private keys can be created using OpenSSL.

// Generate a private key
openssl genrsa -out pk.pem 1024

// Create a certificate signing request
openssl req -new -key pk.pem -out req.csr

// Sign the MoU yourself
openssl x509 -req -days 3650 -in req.csr -signkey pk.pem -out cert.pem

I’ll just repeat myself: You need to have proper certificate from a valid authority. Self signed certificates (the one you are creating) are not accepted by browsers by default.

paresy

1 „Gefällt mir“

okay sometimes tips are help come