Creating a self-singed CA certificate and generating SSL certificates with it.
bashopenssl genrsa [-des3] -out cakey.key 2048
bashopenssl req -x509 -new -nodes -key cakey.key -sha256 -days 1825 -out cacert.crt
bashopenssl genrsa [-des3] -out domain.key 2048
bashopenssl req -new -key domain.key -out domain.csr
5. Generate certificate from signing request with CA certificate and key
bashopenssl x509 -req -in domain.csr -CA cacert.crt -CAkey cakey.key -CAcreateserial -out domain.crt -days 1825 -sha256