{"id":8731,"date":"2023-06-30T07:29:56","date_gmt":"2023-06-30T07:29:56","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=ht_kb&#038;p=8731"},"modified":"2024-06-21T08:33:47","modified_gmt":"2024-06-21T08:33:47","password":"","slug":"lemp-stack-on-ubuntu-20-04","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/","title":{"rendered":"How To Set Up LEMP Stack On Ubuntu 20.04"},"content":{"rendered":"\n<p>We\u2019ll set up the LEMP stack on Ubuntu 20.04 in this post. Ubuntu 20.04 LTS, also known as Focal Fossa. <a href=\"https:\/\/releases.ubuntu.com\/focal\" target=\"_blank\" rel=\"noreferrer noopener\">Ubuntu 20.04<\/a> is a popular choice for both desktop and server use. <\/p>\n\n\n\n<p>It is stable, secure, and has wide software availability. LEMP stands for Linux, Nginx, MySQL, and PHP. Linux serves as the operating system for the server. <\/p>\n\n\n\n<p>MySQL functions as the database system responsible for storing website and user data. PHP, on the other hand, acts as the server-side scripting language, facilitating dynamic processing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why choose the LEMP stack on Ubuntu 20.04&nbsp;<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\"><li>LEMP is widely adopted and well-supported. Numerous online tutorials and resources are available to assist you in starting with LEMP. Additionally, a large community of users can provide support should any issues arise.<\/li><li>NGINX excels in speed and efficiency. As a fast and efficient web server, NGINX is highly scalable and capable of handling substantial traffic loads.<\/li><li>MySQL provides power and reliability for databases. MySQL is a robust and dependable database system known for its scalability and straightforward backup and restoration processes.<\/li><li>PHP is a versatile and widely used scripting language. PHP is utilized by many popular web applications like WordPress, Drupal, and Joomla, owing to its versatility and popularity.<\/li><li>Cost-effective. The LEMP stack comprises freely available and open-source software, eliminating licensing expenses.<\/li><li>Ease of management. The LEMP stack is relatively straightforward to manage, even for beginners. Great tutorials and tools are accessible to assist you in getting started.<\/li><li>Enhanced security. By following established security best practices, the LEMP stack can be configured to offer robust security measures, safeguarding your website or application.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Let\u2019s set up the LEMP stack on Ubuntu 20.04\u00a0\u00a0<\/strong><\/h2>\n\n\n\n<p>Before you add any application to Ubuntu, you should update and upgrade the system. Enables applications to run smoothly.<\/p>\n\n\n\n<p>Do this by running these codes:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo apt update<\/em><\/li><li><em>sudo apt upgrade<\/em><\/li><\/ul>\n\n\n\n<p>After a successful update and upgrade, the system is ready for installation. We\u2019ll begin with the web server.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>1. Install Nginx Web Server<\/strong><\/h4>\n\n\n\n<p>Nginx will run your applications online. Nowadays, Nginx is widely recognized as a high-performance web server with extensive popularity.&nbsp;<\/p>\n\n\n\n<p>It also serves the purpose of a reverse proxy and caching server. Execute the provided command to install the Nginx web server. Start it and check the status.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo apt install nginx<\/em><\/li><li><em>sudo systemctl start nginx<\/em><\/li><li><em>sudo systemctl status nginx<\/em><\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">2. <strong>Install MariaDB Database Server<\/strong><\/h4>\n\n\n\n<p>MariaDB is a seamless replacement for MySQL. It was created by former MySQL team members concerned about Oracle potentially converting MySQL into a closed-source product.&nbsp;<\/p>\n\n\n\n<p>Use the provided command to install MariaDB on Ubuntu 20.04: Also, check the status;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>sudo apt install mariadb-server mariadb-client<\/li><li>systemctl status mariadb<\/li><\/ul>\n\n\n\n<p>Add more security by adding this code and following the prompts given.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo mysql_secure_installation<\/em><\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>\u00a03. Install PHP7.4<\/strong><\/h4>\n\n\n\n<p>PHP stands for PHP: Hypertext Preprocessor, a popular open-source server-side scripting language utilized in websites and web applications.<\/p>\n\n\n\n<p>As a crucial component of the LEMP stack, PHP facilitates the generation of dynamic content on websites.&nbsp;<\/p>\n\n\n\n<p>It also serves as an intermediary between webpages and the database system, enabling the retrieval of data from the database and its presentation to website visitors.&nbsp;<\/p>\n\n\n\n<p>Additionally, PHP allows for the insertion, updating, and deletion of data within the database. Install it by:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo apt install php7.4 php7.4-fpm php7.4-mysql php-common php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline php7.4-mbstring php7.4-xml php7.4-gd php7.4-curl<\/em><\/li><\/ul>\n\n\n\n<p>Now let\u2019s start it and check the status:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo systemctl start php7.4-fpm<\/em><\/li><li><em>systemctl status php7.4-fpm<\/em><\/li><\/ul>\n\n\n\n<p>That\u2019s it; PHP is running well. Now we have to set up the server block.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">4. <strong>Create a PHP File to Test your LEMP stack<\/strong><\/h4>\n\n\n\n<p>Run these codes to add a .info code that we\u2019ll use to test the server.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo nano \/var\/www\/html\/test.php<\/em><\/li><li><em>&lt;?php phpinfo();<\/em><\/li><\/ul>\n\n\n\n<p>Once this is done, save and now test your file by<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"http:\/\/your_server_domain_or_ip\/test.php\">http:\/\/your_server_domain_or_IP\/test.php<\/a><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs\" alt=\"PHP LEMP stack on Ubuntu 20.04\u00a0\"\/><\/figure>\n\n\n\n<p>Now your LEMP stack is ready for use! Congratulations on successfully installing Nginx, MariaDB, and PHP7.4 on <a href=\"https:\/\/truehost.com\/support\/knowledge-base\/set-up-lamp-stack\/\">Ubuntu 20.04<\/a>.&nbsp;<\/p>\n\n\n\n<p>Secure your server by deleting the info.php file immediately to prevent unauthorized access by potential hackers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>To conclude,<\/strong><\/h2>\n\n\n\n<p>Setting up the LEMP stack on Ubuntu 20.04 is easy. LEMP stack is an excellent option for developing high-performance and dependable web applications.<\/p>\n\n\n\n<p>Ubuntu 20.04 provides a solid foundation, while the individual components of the stack have undergone extensive testing and enjoy strong support.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We\u2019ll set up the LEMP stack on Ubuntu 20.04 in this post. Ubuntu 20.04 LTS, also known as Focal Fossa. Ubuntu 20.04 is a popular choice for both desktop and server use. It is stable, secure, and has wide software availability. LEMP stands for Linux, Nginx, MySQL, and PHP. Linux serves as the operating system [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1838],"doc_tag":[],"class_list":["post-8731","docs","type-docs","status-publish","hentry","doc_category-wordpress"],"year_month":"2026-07","word_count":726,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Mark","author_nicename":"mark","author_url":"https:\/\/truehost.com\/support\/author\/mark\/"},"doc_category_info":[{"term_name":"WordPress","term_url":"https:\/\/truehost.com\/support\/docs-category\/wordpress\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Set Up LEMP Stack On Ubuntu 20.04<\/title>\n<meta name=\"description\" content=\"Want to set up LEMP stack on Ubuntu 20.04\u00a0? Get the best web development tools to have smooth web environment and provide the best experience\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Set Up LEMP Stack On Ubuntu 20.04\" \/>\n<meta property=\"og:description\" content=\"Want to set up LEMP stack on Ubuntu 20.04\u00a0? Get the best web development tools to have smooth web environment and provide the best experience\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-21T08:33:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lh3.googleusercontent.com\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/\",\"name\":\"How To Set Up LEMP Stack On Ubuntu 20.04\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs\",\"datePublished\":\"2023-06-30T07:29:56+00:00\",\"dateModified\":\"2024-06-21T08:33:47+00:00\",\"description\":\"Want to set up LEMP stack on Ubuntu 20.04\u00a0? Get the best web development tools to have smooth web environment and provide the best experience\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs\",\"contentUrl\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/lemp-stack-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Set Up LEMP Stack On Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Set Up LEMP Stack On Ubuntu 20.04","description":"Want to set up LEMP stack on Ubuntu 20.04\u00a0? Get the best web development tools to have smooth web environment and provide the best experience","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:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How To Set Up LEMP Stack On Ubuntu 20.04","og_description":"Want to set up LEMP stack on Ubuntu 20.04\u00a0? Get the best web development tools to have smooth web environment and provide the best experience","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/","article_modified_time":"2024-06-21T08:33:47+00:00","og_image":[{"url":"https:\/\/lh3.googleusercontent.com\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/","name":"How To Set Up LEMP Stack On Ubuntu 20.04","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/lh3.googleusercontent.com\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs","datePublished":"2023-06-30T07:29:56+00:00","dateModified":"2024-06-21T08:33:47+00:00","description":"Want to set up LEMP stack on Ubuntu 20.04\u00a0? Get the best web development tools to have smooth web environment and provide the best experience","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/lh3.googleusercontent.com\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs","contentUrl":"https:\/\/lh3.googleusercontent.com\/8Hhj4w7_ebzzhGpJ-IpQhmtOHsWkkFecoMsnPbvses5mCNYIURGuTZbSp3ZYEieqPRs7MJOHQC-1g5jxn5jnQa1HGvy3l_Z8J9Ql_PAULvCgLaa7VW1bALS10fLpquWKgo8N9pyZMlob9R0oDhd_Kqs"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/lemp-stack-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Set Up LEMP Stack On Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/8731","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=8731"}],"version-history":[{"count":1,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/8731\/revisions"}],"predecessor-version":[{"id":8733,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/8731\/revisions\/8733"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=8731"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=8731"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=8731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}