From de1ba775e653e14026ddbb19e75e9f3a87d4d682 Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Wed, 4 Sep 2024 13:56:28 -0300 Subject: [PATCH] Update Azure.md with correct SSL certificate conversion command --- content/Infrastructure/azure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/Infrastructure/azure.md b/content/Infrastructure/azure.md index 412fac5..d26b161 100644 --- a/content/Infrastructure/azure.md +++ b/content/Infrastructure/azure.md @@ -89,7 +89,7 @@ README cert.pem chain.pem fullchain.pem privkey.pem The certificate, chain, and key are issued in .pem format. To upload the certificate in .pfx, use OpenSSL to convert from PEM to PFX: -`sudo openssl pkcs12 -export -in /etc/letsencrypt/live//fullchain.pem -inkey /etc/letsencrypt/live//privkey.pem -out .pfx` +`sudo openssl pkcs12 -inkey /etc/letsencrypt/live//privkey.pem -in /etc/letsencrypt/live//cert.pem -certfile /etc/letsencrypt/live//chain.pem -export -out .pfx` Finally, modify the current HTTPS listener to use the Let's Encrypt certificate. ![11](/images/ssl-autorenew-images/1190c74b-d5e9-4637-86c5-2d85c5959e83.png)