{"id":15468,"date":"2024-10-18T12:36:11","date_gmt":"2024-10-18T12:36:11","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=15468"},"modified":"2024-10-18T18:20:36","modified_gmt":"2024-10-18T18:20:36","password":"","slug":"first-server-setup-with-ubuntu","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/","title":{"rendered":"First Server Setup with Ubuntu"},"content":{"rendered":"\n<p>When you create a new Ubuntu server, performing a few essential configuration steps is crucial for both security and usability. These steps will enhance your server&#8217;s protection and give you a stable foundation for deploying and managing applications effectively.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with Ubuntu Installed. We will use Ubuntu 22.04 here.<\/li>\n\n\n\n<li>Root SSH access to the server<\/li>\n<\/ul>\n\n\n\n<p>Below are the steps that we will go through in this article;<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Logging in as root<\/strong><\/li>\n\n\n\n<li><strong>Creating a New User<\/strong><\/li>\n\n\n\n<li><strong>Granting Administrative Privileges<\/strong><\/li>\n\n\n\n<li><strong>Setting Up a Firewall<\/strong><\/li>\n\n\n\n<li><strong>Enabling External Access for Your Regular User<\/strong><\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1 \u2014 Logging in as Root<\/strong><\/h3>\n\n\n\n<p>To begin, you need to SSH into your server using as root. Please 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<\/p>\n\n\n\n<p><strong>About the Root User:<\/strong> The root account has full administrative privileges, making it a powerful but potentially risky account to use regularly. To avoid accidental damage, it\u2019s better to create a new user account with fewer privileges for daily use. We will create a user called <strong>tke<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2 \u2014 Creating a New User<\/strong><\/h3>\n\n\n\n<p>Once logged in as root, you can create a new user for regular use. In this case, replace <code>tke<\/code> with your desired username:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code><strong>adduser tke<\/strong><\/code><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"638\" height=\"203\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png\" alt=\"\" class=\"wp-image-15484\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png 638w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408-300x95.png 300w\" sizes=\"auto, (max-width: 638px) 100vw, 638px\" \/><\/figure>\n\n\n\n<p>You will be asked to set a password for the new user, and optionally, you can fill in other user information. You can skip any fields by pressing ENTER.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3 \u2014 Granting Administrative Privileges<\/strong><\/h3>\n\n\n\n<p>Next, grant administrative privileges to your new user by adding them to the <code>sudo<\/code> group, which allows the user to run commands with elevated privileges using the <code>sudo<\/code> command.<\/p>\n\n\n\n<p>Run the following command to add your new user (replace <code>tke<\/code> with your username):<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\">\n<pre class=\"wp-block-code\"><code><code><strong>usermod -aG sudo tke<\/strong><\/code><\/code><\/pre>\n<\/div>\n<\/div>\n\n\n\n<p>Now, your new user can execute administrative tasks by prefixing commands with <code>sudo<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4 \u2014 Setting Up a Firewall<\/strong><\/h3>\n\n\n\n<p>Ubuntu includes a firewall tool called UFW (Uncomplicated Firewall), which you can use to block unwanted traffic and allow access to necessary services.<\/p>\n\n\n\n<p>Check which applications are available for firewall configuration by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code><strong>ufw app list<\/strong><\/code><\/code><\/pre>\n\n\n\n<p>The output should show that <strong>OpenSSH<\/strong> is listed, which is essential for maintaining SSH access. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"621\" height=\"102\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-409.png\" alt=\"\" class=\"wp-image-15486\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-409.png 621w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-409-300x49.png 300w\" sizes=\"auto, (max-width: 621px) 100vw, 621px\" \/><\/figure>\n\n\n\n<p>Allow SSH connections through the firewall by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>ufw allow OpenSSH<\/strong><\/code><\/pre>\n\n\n\n<p>Now enable the firewall:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code><strong>ufw enable<\/strong><\/code><\/code><\/pre>\n\n\n\n<p>You can verify the firewall status with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>ufw status<\/strong><\/code><\/pre>\n\n\n\n<p>The firewall will now allow SSH connections while blocking other types of connections by default.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"815\" height=\"343\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-410.png\" alt=\"\" class=\"wp-image-15487\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-410.png 815w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-410-300x126.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-410-768x323.png 768w\" sizes=\"auto, (max-width: 815px) 100vw, 815px\" \/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5 \u2014 Enabling External Access for Your Regular User<\/h3>\n\n\n\n<p>Now that your regular user is set up, you need to ensure that you can log in using that account. Depending on whether your root account uses a password or SSH key, follow one of the steps below:<\/p>\n\n\n\n<p><strong>If the root Account Uses Password Authentication:<\/strong><\/p>\n\n\n\n<p>You can now log in as your new user by opening another terminal session and using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>tke@your_server_ip<\/strong><\/code><\/pre>\n\n\n\n<p>After entering your password, you will be logged in as your regular user.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"712\" height=\"172\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-411.png\" alt=\"\" class=\"wp-image-15489\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-411.png 712w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-411-300x72.png 300w\" sizes=\"auto, (max-width: 712px) 100vw, 712px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"803\" height=\"243\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-412.png\" alt=\"\" class=\"wp-image-15491\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-412.png 803w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-412-300x91.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-412-768x232.png 768w\" sizes=\"auto, (max-width: 803px) 100vw, 803px\" \/><\/figure>\n\n\n\n<p><strong>If the root Account Uses SSH Key Authentication:<\/strong><\/p>\n\n\n\n<p>You can optionally set up SSH keys for your server using <strong><a href=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-configure-ssh-key-for-a-user\/\" target=\"_blank\" rel=\"noreferrer noopener\">these steps<\/a><\/strong><\/p>\n\n\n\n<p>If you logged in as root using SSH keys, you need to copy your SSH key to the new user\u2019s account. Use the following command to transfer the SSH configuration to the new user (make sure to replace <code>tke<\/code>):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><span style=\"background-color: rgba(0, 0, 0, 0.2); color: inherit; font-family: inherit; font-size: inherit;\"><strong>rsync --archive --chown=tke:tke ~\/.ssh \/home\/tke<\/strong><\/span><\/code><\/pre>\n\n\n\n<p>Now, open a new terminal session and log in using SSH:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code><strong>ssh tke@your_server_ip<\/strong><\/code><\/code><\/pre>\n\n\n\n<p>You should be logged in without entering a password.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>By following these steps, you&#8217;ve created a secure and well-configured Ubuntu server that&#8217;s ready for further development or deployment tasks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you create a new Ubuntu server, performing a few essential configuration steps is crucial for both security and usability. These steps will enhance your server&#8217;s protection and give you a stable foundation for deploying and managing applications effectively. Prerequisites Below are the steps that we will go through in this article; Step 1 \u2014 [&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-15468","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":582,"total_views":"0","reactions":{"happy":"25","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>First Server Setup with Ubuntu -<\/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:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"First Server Setup with Ubuntu -\" \/>\n<meta property=\"og:description\" content=\"When you create a new Ubuntu server, performing a few essential configuration steps is crucial for both security and usability. These steps will enhance your server&#8217;s protection and give you a stable foundation for deploying and managing applications effectively. Prerequisites Below are the steps that we will go through in this article; Step 1 \u2014 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-18T18:20:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png\" \/>\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:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/\",\"name\":\"First Server Setup with Ubuntu -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-408.png\",\"datePublished\":\"2024-10-18T12:36:11+00:00\",\"dateModified\":\"2024-10-18T18:20:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-408.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-408.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/first-server-setup-with-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"First Server Setup with Ubuntu\"}]},{\"@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":"First Server Setup with Ubuntu -","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.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"First Server Setup with Ubuntu -","og_description":"When you create a new Ubuntu server, performing a few essential configuration steps is crucial for both security and usability. These steps will enhance your server&#8217;s protection and give you a stable foundation for deploying and managing applications effectively. Prerequisites Below are the steps that we will go through in this article; Step 1 \u2014 [&hellip;]","og_url":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/","article_modified_time":"2024-10-18T18:20:36+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png","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:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/","url":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/","name":"First Server Setup with Ubuntu -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png","datePublished":"2024-10-18T12:36:11+00:00","dateModified":"2024-10-18T18:20:36+00:00","breadcrumb":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-408.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/first-server-setup-with-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"First Server Setup with Ubuntu"}]},{"@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\/15468","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=15468"}],"version-history":[{"count":11,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15468\/revisions"}],"predecessor-version":[{"id":15492,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15468\/revisions\/15492"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=15468"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=15468"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=15468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}