Quantcast
Channel: How to properly create CA certificate and sign the SSL/TLS cert to use in Apache for localhost? - Server Fault
Browsing latest articles
Browse All 2 View Live

Answer by larsks for How to properly create CA certificate and sign the...

This worked for me:Generate CA certificate.openssl req -x509 -new -nodes -newkey rsa:2048 -keyout myCA.key \ -sha256 -days 1825 -out myCA.crt -subj /CN='localhost ca'Generate the server certificate...

View Article



How to properly create CA certificate and sign the SSL/TLS cert to use in...

I've found this article and this what I used to generate CA cert:openssl genrsa -des3 -out myCA.key 2048openssl req -x509 -new -nodes -key myCA.key -sha256 -days 1825 -out myCA.pemI name it "MyCert"And...

View Article
Browsing latest articles
Browse All 2 View Live




Latest Images