Create a Certificate for SSL (HTTPS)

 

openssl req -newkey rsa:4096 \
            -x509 \
            -sha256 \
            -days 3650 \
            -nodes \
            -out example.crt \
            -keyout example.key

Comments

  1. https://www.youtube.com/watch?v=-i7ugO8AVN4

    ReplyDelete
  2. Create a PFX cert file: openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt

    ReplyDelete

Post a Comment

Popular Posts