{"id":2069,"date":"2016-06-24T15:40:31","date_gmt":"2016-06-24T19:40:31","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=2069"},"modified":"2017-11-24T18:09:46","modified_gmt":"2017-11-24T23:09:46","slug":"install-lighttpd-php-fpm-mariadb-centos-7","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/","title":{"rendered":"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7"},"content":{"rendered":"<h1>How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7<\/h1>\n<p>Nginx and Apache are popular choices for serving PHP applications, but Lighttpd is also a contender. Like Nginx, Lighttpd is a faster, less resource-intensive HTTP server that runs scripts in separate processes rather than using internal modules. If you&#8217;d like to use this worthy but less popular alternative, then read on to learn how to set up Lighttpd to serve PHP with access to MariaDB for persistence.<\/p>\n<h2>Getting Started<\/h2>\n<p>To complete this guide, you will need the following:<br \/>\n\u2022 1 Node (<a href=\"https:\/\/www.globo.tech\/cloud-server-pricing\" target=\"_blank\"><b>Cloud Server<\/b><\/a> or <a href=\"http:\/\/www.globo.tech\/dedicated-server-hosting\" target=\"_blank\"><b>Dedicated Server<\/b><\/a>) running CentOS 7.<br \/>\n\u2022 Root access to the server.<\/p>\n<p> When we&#8217;re done, you&#8217;ll have a powerful environment for delivering PHP-based content, along with a first-class storage solution for your data.<\/p>\n<h2>Tutorial<\/h2>\n<p>We&#8217;ll begin by updating all installed packages on the server. This ensures that any currently known CentOS bugs and security issues are patched.<\/p>\n<p><code>yum update -y &amp;&amp; shutdown -r now<\/code><\/p>\n<p>Now we&#8217;ll install the minimal set of packages required to make things work.<\/p>\n<p><code>yum -y install nano epel-release<\/code><\/p>\n<p>Next we&#8217;ll install the packages for MariaDB. MariaDB is a community-supported MySQL fork with various improvements, but which is backwards-compatible with MySQL.<\/p>\n<p>This command installs MariaDB.<\/p>\n<p><code>yum -y install mariadb mariadb-server<\/code><\/p>\n<p>MariaDB is installed, but is not yet configured to launch on boot. This next step configures MariaDB to launch when your server boots up.<\/p>\n<p><code>systemctl start mariadb.service<br \/>\nsystemctl enable mariadb.service<\/code><\/p>\n<p>There are a few post-installation steps needed to configure and harden MariaDB. We&#8217;ll now set a root password and perform a few extra security modifications.<\/p>\n<p><code>mysql_secure_installation<\/code><\/p>\n<p><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2072 alignnone\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png\" alt=\"mysql_secure_installation_500px\" width=\"500\" height=\"738\" \/><\/a><\/p>\n<p>Our next step is setting up Lighttpd. Lighttpd will serve up static content, and will hand off PHP scripts to a separate interpreter for processing.<\/p>\n<p>This command installs the basic Lighttpd package with its default configuration.<\/p>\n<p><code>yum -y install lighttpd<\/code><\/p>\n<p>Again, Lighttpd is installed but not configured to launch on boot. We&#8217;ll take care of that next.<\/p>\n<p><code>systemctl start lighttpd.service<br \/>\nsystemctl enable lighttpd.service<\/code><\/p>\n<p>Unfortunately, there is a bug in Lighttpd&#8217;s default configuration. As configured, the document root is \/var\/www\/htdocs but the installation step creates \/var\/www\/lighttpd instead. Let&#8217;s fix that by renaming the offending directory.<\/p>\n<p><code>mv \/var\/www\/lighttpd \/var\/www\/htdocs<\/code><\/p>\n<p>PHP-FPM is the daemon that executes PHP scripts, returning their output to be served up by Lighttpd. Let&#8217;s set that up next.<\/p>\n<p>First, we&#8217;ll install the package itself.<\/p>\n<p><code>yum -y install php-fpm lighttpd-fastcgi<\/code><\/p>\n<p>Now we need to configure PHP-FPM to run as the lighttpd user.<\/p>\n<p><code>nano \/etc\/php-fpm.d\/www.conf<\/code><\/p>\n<p>Find this block :<br \/>\n<code class=\"gris\">; Unix user\/group of processes<br \/>\n; Note: The user is mandatory. If the group is not set, the default user's group<br \/>\n; will be used.<br \/>\n; RPM: apache Choosed to be able to access some dir as httpd<br \/>\nuser = apache<br \/>\n; RPM: Keep a group allowed to write in log dir.<br \/>\ngroup = apache<\/code><\/p>\n<p>And change it for :<\/p>\n<p><code class=\"gris\">; Unix user\/group of processes<br \/>\n; Note: The user is mandatory. If the group is not set, the default user's group<br \/>\n; will be used.<br \/>\n; RPM: apache Choosed to be able to access some dir as httpd<br \/>\nuser = lighttpd<br \/>\n; RPM: Keep a group allowed to write in log dir.<br \/>\ngroup = lighttpd<\/code><\/p>\n<p>Save this file and exit. Once again, PHP-FPM must be configured to start at boot.<\/p>\n<p><code>systemctl start php-fpm.service<br \/>\nsystemctl enable php-fpm.service<\/code><\/p>\n<p>PHP-FPM is now correctly configured, but Lighttpd still doesn&#8217;t know about it. Let&#8217;s tell Lighttpd how to hand off scripts for execution.<\/p>\n<p><code>nano \/etc\/php.ini<\/code><\/p>\n<p>Find this block :<\/p>\n<p><code class=\"gris\">; cgi.fix_pathinfo provides *real* PATH_INFO\/PATH_TRANSLATED support for CGI. PHP's<br \/>\n; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok<br \/>\n; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting<br \/>\n; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting<br \/>\n; of zero causes PHP to behave as before. Default is 1. You should fix your scripts<br \/>\n; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.<br \/>\n; http:\/\/php.net\/cgi.fix-pathinfo<br \/>\n;cgi.fix_pathinfo=1<\/code><\/p>\n<p>And uncomment the last line :<\/p>\n<p><code class=\"gris\">cgi.fix_pathinfo=1<\/code><\/p>\n<p>Save this file and exit. We must next edit modules.conf as shown:<\/p>\n<p><code>nano \/etc\/lighttpd\/modules.conf<\/code><\/p>\n<p>And uncomment this line:<\/p>\n<p><code class=\"&quot;gris\">##<br \/>\ninclude \"conf.d\/fastcgi.conf\"<br \/>\n##<br \/>\n<\/code><\/p>\n<p>fastcgi.conf must also be edited like so:<\/p>\n<p><code>nano \/etc\/lighttpd\/conf.d\/fastcgi.conf<\/code><\/p>\n<p>Add this block at the end :<\/p>\n<p><code class=\"gris\">fastcgi.server += ( \".php\" =&gt;<br \/>\n((<br \/>\n\"host\" =&gt; \"127.0.0.1\",<br \/>\n\"port\" =&gt; \"9000\",<br \/>\n\"broken-scriptfilename\" =&gt; \"enable\"<br \/>\n))<br \/>\n)<\/code><\/p>\n<p>Save and exit. To communicate with MariaDB, we must now install PHP&#8217;s MySQL module. Since these DBMSs are compatible, the MySQL module also supports communication with MariaDB.<\/p>\n<p><code>yum install php-mysql -y<\/code><\/p>\n<p>In order for the changes to take effect, we must now restart Lighttpd and PHP-FPM.<\/p>\n<p><code>systemctl restart lighttpd.service<br \/>\nsystemctl restart php-fpm.service<\/code><\/p>\n<p>We&#8217;re almost done. To test things out, we&#8217;ll create a basic phpinfo page. This will display a host of diagnostic information about your PHP configuration and environment.<\/p>\n<p>Remove the Lighttpd default page from the document root.<\/p>\n<p><code>cd \/var\/www\/htdocs\/<br \/>\nrm -rf *<\/code><\/p>\n<p>Replace it with a page containing the following content:<\/p>\n<p><code>nano index.php<\/code><\/p>\n<p>Save this file and exit. Access your page at http:\/\/your_main_ip.<\/p>\n<h2>Conclusion<\/h2>\n<p>You now have a lean, fast environment for executing PHP scripts. The addition of MariaDB makes this a great setup for WordPress, along with countless other PHP and MySQL tools. If this guide was helpful to you, kindly share it with others who may also be interested.<\/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>How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7 Nginx and Apache are popular choices for serving PHP applications, but Lighttpd is also a contender. Like Nginx, Lighttpd is a faster, less resource-intensive HTTP server that runs scripts in separate processes rather than using internal modules. If you&#8217;d like to use this worthy<!-- 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":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[70],"tags":[],"class_list":["post-2069","post","type-post","status-publish","format-standard","hentry","category-web-hosting","operating_system-centos-7"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"This tutorial will walk you through the installation of Lighttpd with PHP-FPM and MariaDB on your CentOS 7 server. Read now !\" \/>\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\/install-lighttpd-php-fpm-mariadb-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"This tutorial will walk you through the installation of Lighttpd with PHP-FPM and MariaDB on your CentOS 7 server. Read now !\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-24T19:40:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-11-24T23:09:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/\"},\"author\":{\"name\":\"GloboTech Communications\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"headline\":\"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7\",\"datePublished\":\"2016-06-24T19:40:31+00:00\",\"dateModified\":\"2017-11-24T23:09:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/\"},\"wordCount\":620,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/mysql_secure_installation_500px.png\",\"articleSection\":[\"Web Hosting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/\",\"name\":\"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/mysql_secure_installation_500px.png\",\"datePublished\":\"2016-06-24T19:40:31+00:00\",\"dateModified\":\"2017-11-24T23:09:46+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"This tutorial will walk you through the installation of Lighttpd with PHP-FPM and MariaDB on your CentOS 7 server. Read now !\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/mysql_secure_installation_500px.png\",\"contentUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/mysql_secure_installation_500px.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-lighttpd-php-fpm-mariadb-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7\"}]},{\"@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 Lighttpd with PHP-FPM and MariaDB on CentOS 7 - Globo.Tech","description":"This tutorial will walk you through the installation of Lighttpd with PHP-FPM and MariaDB on your CentOS 7 server. Read now !","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\/install-lighttpd-php-fpm-mariadb-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7 - Globo.Tech","og_description":"This tutorial will walk you through the installation of Lighttpd with PHP-FPM and MariaDB on your CentOS 7 server. Read now !","og_url":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/","og_site_name":"Globo.Tech","article_published_time":"2016-06-24T19:40:31+00:00","article_modified_time":"2017-11-24T23:09:46+00:00","og_image":[{"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png","type":"","width":"","height":""}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/"},"author":{"name":"GloboTech Communications","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"headline":"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7","datePublished":"2016-06-24T19:40:31+00:00","dateModified":"2017-11-24T23:09:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/"},"wordCount":620,"commentCount":0,"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png","articleSection":["Web Hosting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/","url":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/","name":"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png","datePublished":"2016-06-24T19:40:31+00:00","dateModified":"2017-11-24T23:09:46+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"This tutorial will walk you through the installation of Lighttpd with PHP-FPM and MariaDB on your CentOS 7 server. Read now !","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/06\/mysql_secure_installation_500px.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/install-lighttpd-php-fpm-mariadb-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to Install Lighttpd with PHP-FPM and MariaDB on CentOS 7"}]},{"@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\/2069","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=2069"}],"version-history":[{"count":13,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2069\/revisions"}],"predecessor-version":[{"id":3906,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2069\/revisions\/3906"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=2069"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=2069"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=2069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}