Advanced Search
Search Results
4 total results found
HowTo Retrieve Key and Cert from PFX
Here’s a good article on how to export SSL certificates, extract the key and certificate, and import it into AWS. How To Convert Windows PFX Certificate Files Into PEM Format On Linux The above article uses openSSL, which can be found for Windows, here: Win...
Generate SSL Cert
Here’s some steps on how to generate and setup an SSL certificate for a web site. First, order a certificate from a CA, like Sectigo, or Digicert. Once your order is active, they will require you to submit a CSR.This must be generated by you, and wil...
Converting PEM to crt and key
If you receive pem formatted certificate and key files from a CA registrar, you will need to convert them for use by a linux host. Bundles and Chains As well, it may be necessary to compose a certificate chain file, for the host, instead of a simple crt file...
Convert SSL PFX for NGINX Usage
NGINX doesn’t natively use a pfx key file (pfx is what Windows IIS needs). So, it must be converted to a private key, removing the public key from it. Create the folder for storing SSL certificates: cd /etc/nginx/ mkdir ssl cd ssl chmod 700 /etc/nginx/ssl...