{"id":1755,"date":"2022-10-25T10:44:55","date_gmt":"2022-10-25T10:44:55","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=1755"},"modified":"2026-06-16T12:27:16","modified_gmt":"2026-06-16T12:27:16","slug":"letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/","title":{"rendered":"Let&#8217;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\" id=\"8e84\">Introduction<\/h1>\n\n\n\n<p>SSL certificates help secure your website by encrypting data transmitted between visitors and your server. Using Let&#8217;s Encrypt and ACME. You can install a free SSL certificate on your cPanel account and configure automatic renewal to ensure uninterrupted HTTPS protection.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A cPanel account with SSH access enabled<\/li>\n\n\n\n<li>A registered domain name pointing to the server<\/li>\n\n\n\n<li>Access to the cPanel account credentials<\/li>\n\n\n\n<li>Basic knowledge of SSH commands<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Implementation<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Enable SSH and Set Up Access Key<\/h3>\n\n\n\n<p>Log in to your cPanel account and enable SSH access.<\/p>\n\n\n\n<p>Navigate to:<\/p>\n\n\n\n<p>Security \u2192 SSH Access<\/p>\n\n\n\n<p>Click <strong>Manage Keys<\/strong>, then generate a new key and download the private key to your local machine (preferably in ~\/.ssh).<\/p>\n\n\n\n<p>Make a note of the passphrase, as it will be needed in the next step.<\/p>\n\n\n\n<p>Optionally, change the downloaded key extension to .txt and update its permissions:<\/p>\n\n\n\n<p id=\"1518\">chmod 600 ~\/.ssh\/filename.txt<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png\" alt=\"\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Add the SSH Key Passphrase to the ssh-agent<\/h3>\n\n\n\n<p>This allows secure and automatic authentication.<\/p>\n\n\n\n<p>ssh-add -K ~\/.ssh\/id_rsa<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Connect to the Server<\/h3>\n\n\n\n<p>Use SSH to connect to your cPanel account.<\/p>\n\n\n\n<p>ssh -i ~\/.ssh\/filename.txt username@ip<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Download and install acme.sh<\/h3>\n\n\n\n<p>Install acme.sh using either of the following commands:<\/p>\n\n\n\n<p>curl <a href=\"https:\/\/get.acme.sh\">https:\/\/get.acme.sh<\/a> | sh<\/p>\n\n\n\n<p>Or:<\/p>\n\n\n\n<p>wget -O &#8211; <a href=\"https:\/\/get.acme.sh\">https:\/\/get.acme.sh<\/a> | sh<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Reconnect to the Server<\/h3>\n\n\n\n<p>Exit the current shell and log in again to ensure the acme.sh alias is available.<\/p>\n\n\n\n<p>exit<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Issue the SSL Certificate<\/h3>\n\n\n\n<p>Set Let&#8217;s Encrypt as the default certificate authority:<\/p>\n\n\n\n<p>acme.sh &#8211;set-default-ca &#8211;server letsencrypt<\/p>\n\n\n\n<p>Issue the certificate using the web-root method:<\/p>\n\n\n\n<p>acme.sh &#8211;force &#8211;issue -d example.com -d <a href=\"http:\/\/www.example.com\">www.example.com<\/a> -w \/home\/username\/public_html<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Deploy the Certificate to cPanel<\/h3>\n\n\n\n<p>Set the required deployment variables:<\/p>\n\n\n\n<p>export DEPLOY_CPANEL_USER=myusername<\/p>\n\n\n\n<p>export DEPLOY_CPANEL_PASSWORD=PASSWORD<\/p>\n\n\n\n<p>Deploy the certificate:<\/p>\n\n\n\n<p>acme.sh &#8211;deploy -d example.com -d <a href=\"http:\/\/www.example.com\">www.example.com<\/a> &#8211;deploy-hook cpanel<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8: Deploy SSL Using cPanel UAPI<\/h3>\n\n\n\n<p>This deployment method is supported on cPanel &amp; WHM version 56 or later.<\/p>\n\n\n\n<p>Set the cPanel username:<\/p>\n\n\n\n<p>export DEPLOY_CPANEL_USER=username<\/p>\n\n\n\n<p>Deploy the certificate:<\/p>\n\n\n\n<p>acme.sh &#8211;deploy -d example.com -d <a href=\"http:\/\/www.example.com\">www.example.com<\/a> &#8211;deploy-hook cpanel_uapi<\/p>\n\n\n\n<p>Note:<\/p>\n\n\n\n<p>The cpanel_uapi deployment hook only deploys the first domain when certificates are renewed automatically. If you host multiple domains, issue separate certificates for each domain.<\/p>\n\n\n\n<p>The automatic renewal cron job is configured during the acme.sh installation process.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 9: Verify the Auto-Renewal Cron Job<\/h3>\n\n\n\n<p>Check the cron configuration:<\/p>\n\n\n\n<p>crontab -l<\/p>\n\n\n\n<p>Example output:<\/p>\n\n\n\n<p>23 0 * * * &#8220;\/home\/user\/.acme.sh&#8221;\/acme.sh &#8211;cron &#8211;home &#8220;\/home\/user\/.acme.sh&#8221; &gt; \/dev\/null<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 10: Update the .htaccess File<\/h3>\n\n\n\n<p>To redirect all HTTP traffic to HTTPS, add the following rules to your .htaccess file:<\/p>\n\n\n\n<p>&lt;IfModule mod_rewrite.c><br>    RewriteEngine On<br>    RewriteCond %{HTTPS} off<br>    RewriteRule ^(.*)$ https:\/\/%{HTTP_HOST}%{REQUEST_URI} [L,R=301]<br>    RewriteCond %{HTTP_HOST} ^www\\.(.+)$ [NC]<br>    RewriteRule ^ https:\/\/%1%{REQUEST_URI} [R=301,L]<br>&lt;\/IfModule><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p id=\"23ba\">By following the above steps, you can install a free Let&#8217;s Encrypt SSL certificate on your cPanel account using acme.sh and configure automatic renewal. This ensures your website remains secure and continues to serve visitors over HTTPS without requiring manual certificate renewals.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction SSL certificates help secure your website by encrypting data transmitted between visitors and your server. Using Let&#8217;s Encrypt and ACME. You can install a free SSL certificate on your cPanel account and configure automatic renewal to ensure uninterrupted HTTPS protection. Prerequisites Implementation Step 1: Enable SSH and Set Up Access Key Log in to ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[6,5,47],"class_list":["post-1755","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-autossl-for-a-domain","tag-cpanel","tag-ssl"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Let&#039;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps - PheonixSolutions Knowledge-Base<\/title>\n<meta name=\"description\" content=\"Lets encrypt SSL in cpanel\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Let&#039;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Lets encrypt SSL in cpanel\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-25T10:44:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-16T12:27:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png\" \/>\n<meta name=\"author\" content=\"vivek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"vivek\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/\"},\"author\":{\"name\":\"vivek\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/bce0236bf000ddd4cf76000a21fffae9\"},\"headline\":\"Let&#8217;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps\",\"datePublished\":\"2022-10-25T10:44:55+00:00\",\"dateModified\":\"2026-06-16T12:27:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/\"},\"wordCount\":534,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/miro.medium.com\\\/max\\\/875\\\/1*QH6jVMMEjgIHJqWx33f9tA.png\",\"keywords\":[\"AutoSSL for a domain\",\"cPanel\",\"ssl\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/\",\"name\":\"Let's Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/miro.medium.com\\\/max\\\/875\\\/1*QH6jVMMEjgIHJqWx33f9tA.png\",\"datePublished\":\"2022-10-25T10:44:55+00:00\",\"dateModified\":\"2026-06-16T12:27:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/bce0236bf000ddd4cf76000a21fffae9\"},\"description\":\"Lets encrypt SSL in cpanel\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/miro.medium.com\\\/max\\\/875\\\/1*QH6jVMMEjgIHJqWx33f9tA.png\",\"contentUrl\":\"https:\\\/\\\/miro.medium.com\\\/max\\\/875\\\/1*QH6jVMMEjgIHJqWx33f9tA.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Let&#8217;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\",\"name\":\"PheonixSolutions Knowledge-Base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/bce0236bf000ddd4cf76000a21fffae9\",\"name\":\"vivek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0bba10a46a4c2dee9315944be6ac92300cf51687d62ddeddcf6e53510e374ff0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0bba10a46a4c2dee9315944be6ac92300cf51687d62ddeddcf6e53510e374ff0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0bba10a46a4c2dee9315944be6ac92300cf51687d62ddeddcf6e53510e374ff0?s=96&d=mm&r=g\",\"caption\":\"vivek\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/author\\\/vivek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Let's Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps - PheonixSolutions Knowledge-Base","description":"Lets encrypt SSL in cpanel","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/","og_locale":"en_US","og_type":"article","og_title":"Let's Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps - PheonixSolutions Knowledge-Base","og_description":"Lets encrypt SSL in cpanel","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2022-10-25T10:44:55+00:00","article_modified_time":"2026-06-16T12:27:16+00:00","og_image":[{"url":"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png","type":"","width":"","height":""}],"author":"vivek","twitter_card":"summary_large_image","twitter_misc":{"Written by":"vivek","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/"},"author":{"name":"vivek","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/bce0236bf000ddd4cf76000a21fffae9"},"headline":"Let&#8217;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps","datePublished":"2022-10-25T10:44:55+00:00","dateModified":"2026-06-16T12:27:16+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/"},"wordCount":534,"commentCount":0,"image":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#primaryimage"},"thumbnailUrl":"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png","keywords":["AutoSSL for a domain","cPanel","ssl"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/","name":"Let's Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#primaryimage"},"thumbnailUrl":"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png","datePublished":"2022-10-25T10:44:55+00:00","dateModified":"2026-06-16T12:27:16+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/bce0236bf000ddd4cf76000a21fffae9"},"description":"Lets encrypt SSL in cpanel","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#primaryimage","url":"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png","contentUrl":"https:\/\/miro.medium.com\/max\/875\/1*QH6jVMMEjgIHJqWx33f9tA.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"Let&#8217;s Encrypt SSL Cert with Auto Renew on cPanel in 10 Steps"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/","name":"PheonixSolutions Knowledge-Base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/knowledge-base\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/bce0236bf000ddd4cf76000a21fffae9","name":"vivek","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0bba10a46a4c2dee9315944be6ac92300cf51687d62ddeddcf6e53510e374ff0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0bba10a46a4c2dee9315944be6ac92300cf51687d62ddeddcf6e53510e374ff0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0bba10a46a4c2dee9315944be6ac92300cf51687d62ddeddcf6e53510e374ff0?s=96&d=mm&r=g","caption":"vivek"},"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/author\/vivek\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1755","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=1755"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1755\/revisions"}],"predecessor-version":[{"id":3818,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1755\/revisions\/3818"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=1755"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=1755"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=1755"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}