{"id":4645,"date":"2020-01-28T11:41:47","date_gmt":"2020-01-28T16:41:47","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=4645"},"modified":"2020-01-28T11:41:47","modified_gmt":"2020-01-28T16:41:47","slug":"how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/","title":{"rendered":"How to install Free Let&#8217;s Encrypt SSL on LAMP Debian 10"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large is-style-default\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg\" alt=\"\" class=\"wp-image-4646\"\/><\/figure>\n\n\n\n<p>Let&#8217;s Encrypt is a free Certificate Authority that provides a free SSL certificates for your domain. <a href=\"https:\/\/letsencrypt.org\/\">Let&#8217;s Encrypt<\/a> provides a Certbot tool to obtain and install TLS\/SSL certificates automatically on both Apache and Nginx web server. The certificate is valid for 90 days. So you will need to renew it before it expired.  Let&#8217;s Encrypt is a nonprofit certificate authority managed by the Internet Security Research Group. Its main aims is to create a more secure and privacy-respecting Web by adopting HTTPS.<\/p>\n\n\n\n<p>In this tutorial, we will learn how to install and secure a LAMP server with a free  Let&#8217;s Encrypt SSL on Debian 10.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Requirements<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>A <a href=\"https:\/\/www.globo.tech\/dedicated-server-hosting\">server<\/a> running Debian 10<\/li><li>A valid domain name pointed to your server IP<\/li><li>Root access to the server<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><br>LAMP Server Installation<\/h2>\n\n\n\n<p>Let&#8217;s start with installing LAMP server on your server:<\/p>\n\n\n\n<p><code> apt-get install Apache2 mariadb-server php php-cli php-common libapache2-mod-php wget -y <\/code><\/p>\n\n\n\n<p><br>Once all the packages are installed, start Apache and MariaDB service and enable them to start on system reboot with the following command:<\/p>\n\n\n\n<p><code>systemctl start apache2<br>\nsystemctl enable apache2<br>\nsystemctl start mariadb<br>\nsystemctl enable mariadb<\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Create Virtual Host for your Domain<\/h2>\n\n\n\n<p>Next, you will need to create a virtual host server block for your domain. You can create it with the following command:<\/p>\n\n\n\n<p><code> nano \/etc\/apache2\/sites-available\/blog.fictivedomain.conf <\/code><\/p>\n\n\n\n<p><br> Add the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &lt;VirtualHost *:80>\n        ServerName blog.fictivedomain.com \n        ServerAdmin admin@fictivedomain.com \n        DocumentRoot \/var\/www\/html\n        ErrorLog ${APACHE_LOG_DIR}\/error.log\n        CustomLog ${APACHE_LOG_DIR}\/access.log combined\n &lt;\/VirtualHost> <\/pre>\n\n\n\n<p><br>Save and close the file, when you are finished. Then, enable Apache virtual host with the following command:<\/p>\n\n\n\n<p> <code> a2ensite blog.fictivedomain.com.conf <\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Install and Configure Let\u2019s Encrypt<\/h2>\n\n\n\n<p>First, you will need to install Certbot tool to secure your web server with Let\u2019s Encrypt. By default, the latest version of Certbot is not available in the Debian 10 default repository.<\/p>\n\n\n\n<p>You can add the Certbot repository with the following command:<\/p>\n\n\n\n<p><code> apt-get install software-properties-common <br>\n add-apt-repository ppa:certbot\/certbot <\/code><\/p>\n\n\n\n<p><br>Next, update the repository and install Certbot with the following command:<\/p>\n\n\n\n<p><code> apt-get update -y <br>\n apt-get install certbot python-certbot-apache -y <\/code><\/p>\n\n\n\n<p><br>Next, you will need to create a well-known.conf file for Let\u2019s Encrypt to validate your domain.<\/p>\n\n\n\n<p>To do so, first create a .well-known directory and give proper permissions with the following commands:<\/p>\n\n\n\n<p><code> mkdir -p \/var\/lib\/letsencrypt\/.well-known <br>\n chgrp www-data \/var\/lib\/letsencrypt <br>\n chmod g+s \/var\/lib\/letsencrypt<\/code><\/p>\n\n\n\n<p><br>Next, create a well-known.conf file with the following command:<\/p>\n\n\n\n<p><code> nano \/etc\/apache2\/conf-available\/well-known.conf <\/code><\/p>\n\n\n\n<p><br>Add the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &lt;Directory \"\/var\/lib\/letsencrypt\/\"&gt;\n    AllowOverride None\n    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec\n    Require method GET POST OPTIONS\n &lt;\/Directory&gt; <\/pre>\n\n\n\n<p><br>Save and close the file. Then, enable the required modules with the following command:<\/p>\n\n\n\n<p><code> a2enmod ssl <br>\n a2enmod headers<br>\n a2enmod http2<br>\n a2enconf well-known<\/code><\/p>\n\n\n\n<p><br>Finally, restart Apache service to apply all the configuration changes:<\/p>\n\n\n\n<p><code> systemctl restart apache2 <\/code><\/p>\n\n\n\n<p><br>Now, run the following command to install and configure your certificate for domain blog.fictivedomain.com:<\/p>\n\n\n\n<p><code> certbot --apache -d blog.fictivedomain.com <\/code><\/p>\n\n\n\n<p><br>You will be asked to enter an email address and agree to the terms of service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> Saving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\n Plugins selected: Authenticator apache, Installer apache\n Enter email address (used for urgent renewal and security notices) (Enter 'c' to\n cancel): admin@fictivedomain.com\n \n \n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n Please read the Terms of Service at\n https:\/\/letsencrypt.org\/documents\/LE-SA-v1.2-November-15-2017.pdf. You must\n agree in order to register with the ACME server at\n https:\/\/acme-v02.api.letsencrypt.org\/directory\n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n (A)gree\/(C)ancel: A\n \n \n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n Would you be willing to share your email address with the Electronic Frontier\n Foundation, a founding partner of the Let's Encrypt project and the non-profit\n organization that develops Certbot? We'd like to send you email about our work\n encrypting the web, EFF news, campaigns, and ways to support digital freedom.\n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n (Y)es\/(N)o: Y\n Obtaining a new certificate\n Performing the following challenges:\n http-01 challenge for blog.fictivedomain.com \n Enabled Apache rewrite module\n Waiting for verification...\n Cleaning up challenges\n Created an SSL vhost at \/etc\/apache2\/sites-available\/blog.fictivedomain.com-le-ssl.conf\n Deploying Certificate to VirtualHost \/etc\/apache2\/sites-available\/blog.fictivedomain.com-le-ssl.conf\n Enabling available site: \/etc\/apache2\/sites-available\/blog.fictivedomain.com-le-ssl.conf<\/pre>\n\n\n\n<p><br>If it&#8217;s successful, certbot will ask to choose whether or not to redirect HTTP traffic to HTTPS. Choose appropriate option then hit ENTER. Once the certificates are installed successfully, you should see the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.\n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n 1: No redirect - Make no further changes to the webserver configuration.\n 2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for\n new sites, or if you're confident your site works on HTTPS. You can undo this\n change by editing your web server's configuration.\n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2\n \n \n Enabled Apache rewrite module\n Redirecting vhost in \/etc\/apache2\/sites-enabled\/blog. fictivedomain.com.conf to ssl vhost in \/etc\/apache2\/sites-available\/blog. fictivedomain.com-le-ssl.conf\n \n \n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n Congratulations! You have successfully enabled https:\/\/blog. fictivedomain.com\n \n \n You should test your configuration at:\n https:\/\/www.ssllabs.com\/ssltest\/analyze.html?d=blog. fictivedomain.com\n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n \n \n IMPORTANT NOTES:\n - Congratulations! Your certificate and chain have been saved at:\n   \/etc\/letsencrypt\/live\/blog.fictivedomain.com\/fullchain.pem\n   Your key file has been saved at:\n   \/etc\/letsencrypt\/live\/blog.fictivedomain.com\/privkey.pem\n   Your cert will expire on 2019-10-22. To obtain a new or tweaked\n   version of this certificate in the future, simply run certbot again\n   with the \"certonly\" option. To non-interactively renew *all* of\n   your certificates, run \"certbot renew\"\n - Your account credentials have been saved in your Certbot\n   configuration directory at \/etc\/letsencrypt. You should make a\n   secure backup of this folder now. This configuration directory will\n   also contain certificates and private keys obtained by Certbot so\n   making regular backups of this folder is ideal.\n - If you like Certbot, please consider supporting our work by:\n \n \n   Donating to ISRG \/ Let's Encrypt:   https:\/\/letsencrypt.org\/donate\n   Donating to EFF:                    https:\/\/eff.org\/donate-le<\/pre>\n\n\n\n<p><br>Now, open your web browser and type the URL <strong>https:\/\/blog.fictivedomain.com<\/strong>. You should that the site is properly secured, usually with a green lock icon, meaning that you successfully installed your free Let&#8217;s Encrypt SSL:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/Apache-Default.png\" alt=\"\" class=\"wp-image-4647\" width=\"632\" height=\"356\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Setting Up Auto Renewal<\/h2>\n\n\n\n<p>Let\u2019s Encrypt free SSL certificates are valid for 90 days. So, you will need to set up a cron job to auto-renew SSL certificate. It is safe to create a cron job that runs every week or even every day.<\/p>\n\n\n\n<p>If you want to renew the SSL certificate manually, run the following command:<\/p>\n\n\n\n<p><code> certbot renew --dry-run <\/code><\/p>\n\n\n\n<p><br>You can setup cron job to auto-renew SSL certificate by editing following file:<\/p>\n\n\n\n<p><code> crontab -e<\/code><\/p>\n\n\n\n<p><br>Add the following line:<\/p>\n\n\n\n<p><code> 52 10 * * *   root \/usr\/bin\/certbot renew &gt;\/dev\/null 2&gt;&amp;1<\/code><\/p>\n\n\n\n<p><br>Save and close the file, when you are finished.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Conclusion<\/h2>\n\n\n\n<p>In this tutorial, we have learned how to install a free  SSL on Apache web server with Let&#8217;s Encrypt. I hope you can now easily secure your web server with Let&#8217;s Encrypt.<\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>Protect your website using a free SSL on Debian 10 using Let&#8217;s encrypt.<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":4646,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[71],"tags":[150,151,129],"class_list":["post-4645","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-applications","tag-debian","tag-lamp","tag-ssl"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to install Free Let&#039;s Encrypt SSL on LAMP Debian 10 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"Learn how to install a free Let&#039;s encrypt SSL on Debian 10. SSL are essential theses days and you must have one on your website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Free Let&#039;s Encrypt SSL on LAMP Debian 10 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"Learn how to install a free Let&#039;s encrypt SSL on Debian 10. SSL are essential theses days and you must have one on your website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-28T16:41:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/\",\"name\":\"How to install Free Let's Encrypt SSL on LAMP Debian 10 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg\",\"datePublished\":\"2020-01-28T16:41:47+00:00\",\"author\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"Learn how to install a free Let's encrypt SSL on Debian 10. SSL are essential theses days and you must have one on your website.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#primaryimage\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg\",\"contentUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.globo.tech\/learning-center\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Free Let&#8217;s Encrypt SSL on LAMP Debian 10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\/\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Free Let's Encrypt SSL on LAMP Debian 10 - Globo.Tech","description":"Learn how to install a free Let's encrypt SSL on Debian 10. SSL are essential theses days and you must have one on your website.","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:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/","og_locale":"en_US","og_type":"article","og_title":"How to install Free Let's Encrypt SSL on LAMP Debian 10 - Globo.Tech","og_description":"Learn how to install a free Let's encrypt SSL on Debian 10. SSL are essential theses days and you must have one on your website.","og_url":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/","og_site_name":"Globo.Tech","article_published_time":"2020-01-28T16:41:47+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg","type":"image\/jpeg"}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/","url":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/","name":"How to install Free Let's Encrypt SSL on LAMP Debian 10 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg","datePublished":"2020-01-28T16:41:47+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"Learn how to install a free Let's encrypt SSL on Debian 10. SSL are essential theses days and you must have one on your website.","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/01\/installLetsEncryptSSL-Debian.jpg","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-free-lets-encrypt-ssl-on-lamp-debian-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to install Free Let&#8217;s Encrypt SSL on LAMP Debian 10"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4645","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=4645"}],"version-history":[{"count":7,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4645\/revisions"}],"predecessor-version":[{"id":4661,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4645\/revisions\/4661"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media\/4646"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=4645"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=4645"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=4645"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}