{"id":443,"date":"2018-02-14T06:00:06","date_gmt":"2018-02-14T12:00:06","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=443"},"modified":"2018-02-08T08:21:27","modified_gmt":"2018-02-08T14:21:27","slug":"install-lets-encrypt-ssl-certificates-using-certbot","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/","title":{"rendered":"Install Let&#8217;s Encrypt SSL Certificates using Certbot"},"content":{"rendered":"<div id=\"linux-993718359\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial we are going to show you, how to install Let&#8217;s Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free and automated Certificate Authority (CA) that offers free domain-validated (DV) certificates for your websites. SSL Certificates are used to establish a secure encrypted connection between a web server and a user\u2019s web browser. The SSL certificates that have been issued by Let\u2019s Encrypt are valid for 90 days and are trusted by most web browsers today.<\/p>\n<p><!--more--><\/p>\n<p>Let&#8217;s Encrypt has an automated installer called Certbot. With Certbot you can very easily add a certificate to your site in just a couple of minutes. Certbot can be used on both Nginx and Apache server and it is supported on various Linux distributions such us Ubuntu, Debian or CentOS. For the purposes of this tutorial, we will show you how to install Let&#8217;s Encrypt SSL certificate on Ubuntu 16.04 with Apache web server.<\/p>\n<h2>1. Install Certbot<\/h2>\n<p>To install Certbot, simply run the following commands:<\/p>\n<pre>apt-get install software-properties-common python-software-properties\r\nadd-apt-repository ppa:certbot\/certbot\r\napt-get update\r\napt-get install python-certbot-apache<\/pre>\n<h2>2. Install Let&#8217;s Encrypt SSL Certificate<\/h2>\n<p>To install a Let&#8217;s Encrypt SSL certificate on your domain, execute the following command (make sure you replace &#8216;yourdomain.com&#8217; with your actual domain name):<\/p>\n<pre>certbot --apache -d yourdomain.com<\/pre>\n<p>You will then be asked for an email address and to read and accept the Terms of Services. This is how the output should look like during the installation:<\/p>\n<pre>Saving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\r\nPlugins selected: Authenticator apache, Installer apache\r\nEnter email address (used for urgent renewal and security notices) (Enter 'c' to\r\ncancel): admin@yourdomain.com\r\n\r\n-------------------------------------------------------------------------------\r\nPlease read the Terms of Service at\r\nhttps:\/\/letsencrypt.org\/documents\/LE-SA-v1.2-November-15-2017.pdf. You must\r\nagree in order to register with the ACME server at\r\nhttps:\/\/acme-v01.api.letsencrypt.org\/directory\r\n-------------------------------------------------------------------------------\r\n(A)gree\/(C)ancel: A\r\n\r\n-------------------------------------------------------------------------------\r\nWould you be willing to share your email address with the Electronic Frontier\r\nFoundation, a founding partner of the Let's Encrypt project and the non-profit\r\norganization that develops Certbot? We'd like to send you email about EFF and\r\nour work to encrypt the web, protect its users and defend digital rights.\r\n-------------------------------------------------------------------------------\r\n(Y)es\/(N)o: Y\r\n\r\nObtaining a new certificate\r\nPerforming the following challenges:\r\ntls-sni-01 challenge for yourdomian.com\r\nWaiting for verification...\r\nCleaning up challenges\r\nCreated an SSL vhost at \/etc\/apache2\/sites-available\/000-default-le-ssl.conf\r\nDeploying Certificate for yourdomain.com to VirtualHost \/etc\/apache2\/sites-available\/000-default-le-ssl.conf\r\nEnabling available site: \/etc\/apache2\/sites-available\/000-default-le-ssl.conf<\/pre>\n<h2>3. Redirect HTTP to HTTPS<\/h2>\n<p>Additionally, you can also make a choice if you would like to redirect all the HTTP traffic to HTTPS:<\/p>\n<pre>Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.\r\n-------------------------------------------------------------------------------\r\n1: No redirect - Make no further changes to the webserver configuration.\r\n2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for\r\nnew sites, or if you're confident your site works on HTTPS. You can undo this\r\nchange by editing your web server's configuration.\r\n-------------------------------------------------------------------------------\r\nSelect the appropriate number [1-2] then [enter] (press 'c' to cancel): 2\r\nRedirecting vhost in \/etc\/apache2\/sites-enabled\/000-default.conf to ssl vhost in \/etc\/apache2\/sites-available\/000-default-le-ssl.conf\r\n\r\n-------------------------------------------------------------------------------\r\nCongratulations! You have successfully enabled https:\/\/yourdomain.com<\/pre>\n<h2>4. Automatic renewal<\/h2>\n<p>You can also create a cron job in order to set up an automatic SSL renewal. To do this first run:<\/p>\n<pre>crontab -e<\/pre>\n<p>and then add the following:<\/p>\n<pre>0 0 1 * * \/usr\/bin\/letsencrypt renew &gt;&gt; \/var\/log\/letsencrypt-renew.log<\/pre>\n<p>Save the file and close it. Restart the cron service so the changes can take effect:<\/p>\n<pre>service cron restart<\/pre>\n<p>That&#8217;s it. You can now open<strong> https:\/\/yourdomain.com<\/strong> in your browser and verify whether the Let&#8217;s Encrypt SSL certificate has been installed properly.<\/p>\n<p>&nbsp;<\/p>\n<p>Of course, you don\u2019t have to install Let&#8217;s Encrypt SSL Certificate using Certbot if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Server Support Services<\/a> in which case you can simply ask our expert Linux admins to install Let&#8217;s Encrypt using Certbot for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post, on how to install Let&#8217;s Encrypt\u00a0SSL Certificate using Certbot, please share it with your friends on the social networks using the buttons on the right or simply leave a reply below. Thanks.<\/p><div id=\"linux-293485230\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we are going to show you, how to install Let&#8217;s Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free and automated Certificate Authority (CA) that offers free domain-validated (DV) certificates for your websites. SSL Certificates are used to establish a secure encrypted connection between a web server and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":445,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[82,68],"class_list":["post-443","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-certbot","tag-lets-encrypt"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install Let&#039;s Encrypt SSL Certificates using Certbot | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial we are going to show you, how to install Let&#039;s Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Let&#039;s Encrypt SSL Certificates using Certbot | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial we are going to show you, how to install Let&#039;s Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-14T12:00:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"Install Let&#8217;s Encrypt SSL Certificates using Certbot\",\"datePublished\":\"2018-02-14T12:00:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\"},\"wordCount\":429,\"commentCount\":2,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg\",\"keywords\":[\"certbot\",\"Let's Encrypt\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\",\"name\":\"Install Let's Encrypt SSL Certificates using Certbot | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg\",\"datePublished\":\"2018-02-14T12:00:06+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial we are going to show you, how to install Let's Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg\",\"width\":750,\"height\":410,\"caption\":\"Install Let's Encrypt SSL Certificates using Certbot\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Let&#8217;s Encrypt SSL Certificates using Certbot\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install Let's Encrypt SSL Certificates using Certbot | LinuxHostSupport","description":"In this tutorial we are going to show you, how to install Let's Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free","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:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/","og_locale":"en_US","og_type":"article","og_title":"Install Let's Encrypt SSL Certificates using Certbot | LinuxHostSupport","og_description":"In this tutorial we are going to show you, how to install Let's Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free","og_url":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-02-14T12:00:06+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"Install Let&#8217;s Encrypt SSL Certificates using Certbot","datePublished":"2018-02-14T12:00:06+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/"},"wordCount":429,"commentCount":2,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg","keywords":["certbot","Let's Encrypt"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/","url":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/","name":"Install Let's Encrypt SSL Certificates using Certbot | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg","datePublished":"2018-02-14T12:00:06+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial we are going to show you, how to install Let's Encrypt SSL Certificates using Certbot. Let\u2019s Encrypt is an open source, completely free","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/02\/Install-Lets-Encrypt-SSL-Certificates-using-Certbot.jpg","width":750,"height":410,"caption":"Install Let's Encrypt SSL Certificates using Certbot"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/install-lets-encrypt-ssl-certificates-using-certbot\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Let&#8217;s Encrypt SSL Certificates using Certbot"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/443","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=443"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/443\/revisions"}],"predecessor-version":[{"id":446,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/443\/revisions\/446"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/445"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=443"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=443"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=443"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}