Skip to main content

Posts

Showing posts from 2026
         SSL SAN Certificate for Apache server   If you want to create a SSL Certificate you need to run the below commands.   STEP: Generate Private Key Crete a folder in C Drive mkdir ~/certs cd ~/certs  This is on the Windows server where you want to create the certificate Open OpenSSL you need to install it in Windows server. open OpenSSL Command prompt and run the below command Create the key and place in a file: openssl genrsa -out www.contoso.com .key 2048     In the above command change the website to your website to which your creating the Certificate  the Certs folder the key file will be generated.  Before creating the CSR create a new file in the Certs folder with the below details and rename it as Contoso.cnf mentioned in it [req] default_bits = 2048 prompt = no default_md = sha256 req_extensions = req_ext distinguished_name = dn [dn] C = GB ST = Greater Manchester L = Salford O = contoso OU = IT CN =  co...