{"id":14900,"date":"2024-10-10T11:43:52","date_gmt":"2024-10-10T11:43:52","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=14900"},"modified":"2024-10-11T12:46:21","modified_gmt":"2024-10-11T12:46:21","password":"","slug":"how-to-configure-the-apache-web-server-on-an-almalinux","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/","title":{"rendered":"How To Configure the Apache Web Server on an Almalinux"},"content":{"rendered":"\n<p>The Apache HTTP Server, commonly known as Apache, is one of the most popular and widely used web servers. This guide will walk you through the steps required to install, configure, and manage Apache on an Ubuntu system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before you begin, make sure you have the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Ubuntu Server or Desktop<\/strong>: A system running Ubuntu (18.04\/20.04\/22.04).<\/li>\n\n\n\n<li><strong>Root or Sudo Privileges<\/strong>: You need administrative access to install and configure Apache.<\/li>\n\n\n\n<li><strong>Basic Terminal Skills<\/strong>: Familiarity with Linux command-line utilities.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step-by-step<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Follow these steps<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 1<\/strong>: SSH into your server as root. See <strong><a href=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-access-a-server-via-ssh-terminal\/\" target=\"_blank\" rel=\"noreferrer noopener\">these steps<\/a><\/strong> on how to.<\/h5>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 2: Update the Package Index<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It\u2019s always good practice to update your package list before installing any new software.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo dnf update -y<\/strong><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 3<\/strong> <strong>: Install Apache<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To install Apache, run the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo dnf install httpd -y<\/strong><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 3: Start and Enable Apache<\/strong><\/h5>\n\n\n\n<p>After installing Apache, you need to start the Apache service and enable it to start automatically on boot.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start Apache<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl start httpd<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Enable Apache on Boot<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl enable httpd<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Check Apache Status<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl status httpd<\/strong><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 4:<\/strong>. <strong>Adjust the Firewall to Allow Apache<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you have a firewall enabled on your server, you\u2019ll need to open ports for Apache. Apache typically uses port <code>80<\/code> for HTTP and port <code>443<\/code> for HTTPS<\/li>\n\n\n\n<li>To allow traffic on these ports, use the following commands:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo firewall-cmd --permanent --add-service=http\n\nsudo firewall-cmd --permanent --add-service=https<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To verify that the rules were added successfully, run to relaod the firewall:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo firewall-cmd --reload<\/strong><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 5: Check Apache Status<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After installation, Apache should start automatically. You can check its status using the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><strong>sudo systemctl status httpd<\/strong><\/strong><\/code><\/pre>\n\n\n\n<p>You should see a message indicating that the service is active and running.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 6: Test Apache Installation<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To test that Apache is working correctly, open a web browser and enter your server&#8217;s IP address:<\/li>\n\n\n\n<li>You can get your IP bu running <strong>hostname -I<\/strong> on your terminal, then access the it on your browser.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>http:\/\/your-server-ip<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You should see the default Apache welcome page, confirming that the web server is running correctly.<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 7: Managing Apache Service<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can manage the Apache service using the <code>systemctl<\/code> command. Here are some common tasks:\n<ul class=\"wp-block-list\">\n<li><strong>Start Apache<\/strong>: sudo systemctl start <strong>httpd<\/strong><\/li>\n\n\n\n<li><strong>Stop Apache<\/strong>: sudo systemctl stop <strong>httpd<\/strong><\/li>\n\n\n\n<li><strong>Restart Apache<\/strong>: sudo systemctl restart <strong>httpd<\/strong><\/li>\n\n\n\n<li><strong>Reload Apache (without stopping)<\/strong>: sudo systemctl reload <strong>httpd<\/strong><\/li>\n\n\n\n<li><strong>Enable Apache to Start at Boot<\/strong>: sudo systemctl enable <strong>httpd<\/strong><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 7: Configure Apache Virtual Hosts<\/strong><\/h5>\n\n\n\n<p>Apache uses virtual hosts to serve multiple domains from the same server. Here\u2019s how you can create a virtual host configuration.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Create the Directory for the Website<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo mkdir -p \/var\/www\/your_domain<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Assign Ownership<\/strong>: Assign ownership of the directory to the user running the web server (typically <code>www-data<\/code>):<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo chown -R www-data:www-data \/var\/www\/your_domain<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Create a Virtual Host Configuration File<\/strong>: Apache stores virtual host configurations in <code>\/etc\/apache2\/sites-available\/<\/code>. Create a new configuration file for your domain:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo vim \/etc\/<strong>httpd<\/strong>\/sites-available\/your_domain.conf<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following content: Replace <strong>admin@your_domain<\/strong> with your valid email and <strong>your_domain<\/strong> with your domain name<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>&lt;VirtualHost *:80&gt;<\/strong>\n    <strong>ServerAdmin admin@your_domain\n    ServerName your_domain\n    ServerAlias www.your_domain\n    DocumentRoot \/var\/www\/your_domain\n    ErrorLog ${APACHE_LOG_DIR}\/error.log\n    CustomLog ${APACHE_LOG_DIR}\/access.log combined\n&lt;VirtualHost *:80&gt;<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Enable the Virtual Host<\/strong>: Enable your virtual host by running:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo a2ensite your_domain.conf<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Disable the Default Virtual Host<\/strong> (Optional): If you no longer want to serve the default Apache page:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo a2dissite 000-default.conf<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Reload Apache<\/strong>: For the changes to take effect:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl restart httpd<\/strong><\/code><\/pre>\n\n\n\n<p><strong>Step 8: Test if your set up can serve a website <\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a sample index.html file in your document root, using vim or nano or your preferred text editor:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>vi \/var\/www\/your_domain\/index.html<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following sample HTML code inside the file:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>&lt;html&gt;\n  &lt;head&gt;\n    &lt;h2&gt;This is a test page&lt;\/&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    &lt;p&gt;My set up is working&lt;\/p&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Save the file once you have added the code and restart apache.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><strong>sudo systemctl restart httpd<\/strong><\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Visit your domain on the browser to see if it displays content of your index.html file. <\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Step 9: Enable PHP Support (Optional)<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you plan to use PHP with Apache, you\u2019ll need to install PHP and its modules.<\/li>\n<\/ul>\n\n\n\n<p><strong>Install PHP<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo dnf install php php-mysqlnd php-fpm -y<\/strong><\/code><\/pre>\n\n\n\n<p><strong>Restart Apache<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl restart httpd<\/strong><\/code><\/pre>\n\n\n\n<p><strong>Test PHP<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo nano \/var\/www\/html\/example.com\/test.php<\/strong><\/code><\/pre>\n\n\n\n<p>Add the following content:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php\nphpinfo();\n?&gt;<\/strong>\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Save and exit. Then, navigate to <code>http:\/\/your-server-ip\/test.php<\/code> in your browser. If PHP is configured correctly, you should see the PHP info page.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>The Apache HTTP Server, commonly known as Apache, is one of the most popular and widely used web servers. This guide will walk you through the steps required to install, configure, and manage Apache on an Ubuntu system. Prerequisites Before you begin, make sure you have the following: Step-by-step Step 1: SSH into your server [&hellip;]<\/p>\n","protected":false},"author":9,"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":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-14900","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":794,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Configure the Apache Web Server on an Almalinux -<\/title>\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\/how-to-configure-the-apache-web-server-on-an-almalinux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Configure the Apache Web Server on an Almalinux -\" \/>\n<meta property=\"og:description\" content=\"The Apache HTTP Server, commonly known as Apache, is one of the most popular and widely used web servers. This guide will walk you through the steps required to install, configure, and manage Apache on an Ubuntu system. Prerequisites Before you begin, make sure you have the following: Step-by-step Step 1: SSH into your server [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-11T12:46:21+00:00\" \/>\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=\"3 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\\\/how-to-configure-the-apache-web-server-on-an-almalinux\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-configure-the-apache-web-server-on-an-almalinux\\\/\",\"name\":\"How To Configure the Apache Web Server on an Almalinux -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"datePublished\":\"2024-10-10T11:43:52+00:00\",\"dateModified\":\"2024-10-11T12:46:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-configure-the-apache-web-server-on-an-almalinux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-configure-the-apache-web-server-on-an-almalinux\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-configure-the-apache-web-server-on-an-almalinux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Configure the Apache Web Server on an Almalinux\"}]},{\"@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 Configure the Apache Web Server on an Almalinux -","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\/how-to-configure-the-apache-web-server-on-an-almalinux\/","og_locale":"en_US","og_type":"article","og_title":"How To Configure the Apache Web Server on an Almalinux -","og_description":"The Apache HTTP Server, commonly known as Apache, is one of the most popular and widely used web servers. This guide will walk you through the steps required to install, configure, and manage Apache on an Ubuntu system. Prerequisites Before you begin, make sure you have the following: Step-by-step Step 1: SSH into your server [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/","article_modified_time":"2024-10-11T12:46:21+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/","name":"How To Configure the Apache Web Server on an Almalinux -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"datePublished":"2024-10-10T11:43:52+00:00","dateModified":"2024-10-11T12:46:21+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-the-apache-web-server-on-an-almalinux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Configure the Apache Web Server on an Almalinux"}]},{"@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\/14900","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\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=14900"}],"version-history":[{"count":9,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/14900\/revisions"}],"predecessor-version":[{"id":14955,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/14900\/revisions\/14955"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=14900"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=14900"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=14900"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}