{"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":"2022-10-25T10:44:59","modified_gmt":"2022-10-25T10:44:59","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":"LetsEncrypt SSL Cert with Auto Renew on Cpanel in 10 Steps"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"8e84\">1. Enable SSH and setup access key<\/h1>\n\n\n\n<p id=\"1518\">Go to your Cpanel and&nbsp;<strong>Enable SSH<\/strong>. Then scroll down till you find the Security Section and click on SSH Access. Click on Manage Keys then&nbsp;<strong>Generate a key<\/strong>&nbsp;and download the private key to your local machine (<em>ideally in ~\/.ssh<\/em>). Take a note of the passphrase we will need in the next step<\/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<p id=\"c273\">Change the downloaded key\u2019s extension to .txt (optional) and then change its permission:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chmod 600 ~\/.ssh\/filename.txt<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"9801\">2. Adding your SSH key passphrase to the ssh-agent<\/h1>\n\n\n\n<p id=\"5b75\">This allow us to login securely and automatically<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh-add -K ~\/.ssh\/id_rsa<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"4afe\">3. SSH into Cpanel<\/h1>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh -i ~\/.ssh\/filename.txt username@ip<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"ba3c\">4. Download and install acme.sh<\/h1>\n\n\n\n<pre class=\"wp-block-preformatted\">curl https:\/\/get.acme.sh | sh<br>Or:<br>wget -O -  https:\/\/get.acme.sh | sh<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"ee8c\">5. Exit the shell and re-login to make the alias working<\/h1>\n\n\n\n<pre class=\"wp-block-preformatted\">exit<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"6e64\">6. Issue SSL certificate (web-root method)<\/h1>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>UPDATE: Set Default CA to LetsEncrypt<\/strong><\/p><p>acme.sh \u2014 set-default-ca \u2014 server letsencrypt<\/p><\/blockquote>\n\n\n\n<pre class=\"wp-block-preformatted\">acme.sh --force --issue -d example.com -d www.example.com  -w \/home\/username\/public_html<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"c848\">7. Deploy the certs to your CPanel host<\/h1>\n\n\n\n<p id=\"8b4e\">Lets set some constants first<\/p>\n\n\n\n<p id=\"0c2e\"><em>You only need to do this once<\/em><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">export DEPLOY_CPANEL_USER=myusername<br>export DEPLOY_CPANEL_PASSWORD=PASSWORD<\/pre>\n\n\n\n<p id=\"f3b7\">Time to deploy the<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">acme.sh --deploy -d example.com -d www.example.com --deploy-hook cpanel<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"868e\">8. Deploy SSL to CPanel using UAPI<\/h1>\n\n\n\n<p id=\"c7f9\">This hook is using UAPI and works in cPanel &amp; WHM version 56 or newer.<\/p>\n\n\n\n<p id=\"898f\">DEPLOY_CPANEL_USER is required only if you run the script as root and it should contain cpanel username.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">export DEPLOY_CPANEL_USER=usernameacme.sh --deploy -d example.com -d www.example.com --deploy-hook cpanel_uapi<\/pre>\n\n\n\n<p id=\"ba79\">Please note, that the cpanel_uapi hook will deploy only the first domain when your certificate will automatically renew. Therefore you should issue a separate certificate for each domain.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note: the cron job to auto-renew SSL certificate is also set-up<\/strong><\/p><\/blockquote>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"3814\">9.You are done. Check the cron job by the following.<\/h1>\n\n\n\n<pre class=\"wp-block-preformatted\">crontab -l<br>23 0 * * * \"\/home\/user\/.acme.sh\"\/acme.sh --cron --home \"\/home\/user\/.acme.sh\" &gt; \/dev\/null<\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"0fbb\">10. Updating .htaccess file<\/h1>\n\n\n\n<p id=\"8b3b\">Hosts doesn\u2019t automatically redirect from the insecure (http) version of the site to the secure (https) version.<\/p>\n\n\n\n<p id=\"23ba\">Here\u2019s how to do just that:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;IfModule mod_rewrite.c&gt;<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&gt;<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>1. Enable SSH and setup access key Go to your Cpanel and&nbsp;Enable SSH. Then scroll down till you find the Security Section and click on SSH Access. Click on Manage Keys then&nbsp;Generate a key&nbsp;and download the private key to your local machine (ideally in ~\/.ssh). Take a note of the passphrase we will need in ..<\/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_memberships_contains_paid_content":false,"footnotes":""},"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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>LetsEncrypt 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=\"LetsEncrypt 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=\"2022-10-25T10:44:59+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=\"2 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\":\"LetsEncrypt SSL Cert with Auto Renew on Cpanel in 10 Steps\",\"datePublished\":\"2022-10-25T10:44:55+00:00\",\"dateModified\":\"2022-10-25T10:44:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/10\\\/25\\\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\\\/\"},\"wordCount\":277,\"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\":\"LetsEncrypt 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\":\"2022-10-25T10:44:59+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\":\"LetsEncrypt 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":"LetsEncrypt 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":"LetsEncrypt 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":"2022-10-25T10:44:59+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":"2 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":"LetsEncrypt SSL Cert with Auto Renew on Cpanel in 10 Steps","datePublished":"2022-10-25T10:44:55+00:00","dateModified":"2022-10-25T10:44:59+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/10\/25\/letsencrypt-ssl-cert-with-auto-renew-on-cpanel-in-10-steps\/"},"wordCount":277,"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":"LetsEncrypt 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":"2022-10-25T10:44:59+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":"LetsEncrypt 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":1,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1755\/revisions"}],"predecessor-version":[{"id":1756,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1755\/revisions\/1756"}],"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}]}}