Convert SSL PFX for NGINX Usage
System Administration
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...