{"id":18650,"date":"2025-02-10T08:31:47","date_gmt":"2025-02-10T08:31:47","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=18650"},"modified":"2025-02-10T08:31:48","modified_gmt":"2025-02-10T08:31:48","password":"","slug":"how-to-deploy-website-using-git-on-a-vps-server","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/","title":{"rendered":"How to deploy website using git on a VPS server."},"content":{"rendered":"\n<p>This guide will walk you through the process of performing system updates, installing Git, generating an SSH key pair, copying the public key to GitHub, cloning a repository, and troubleshooting common issues.<\/p>\n\n\n\n<p>NOTE: This guide uses <strong>AlmaLinux OS <\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>1. Perform System Updates<\/strong><\/h2>\n\n\n\n<p>Before making any changes or installing new software, it&#8217;s crucial to ensure that your system is up-to-date. <\/p>\n\n\n\n<p><strong><em><code>yum -y update<br>yum clean all<\/code><\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"255\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.png\" alt=\"\" class=\"wp-image-18651\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-300x75.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-768x191.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30.png 1335w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>2. Install Git<\/strong><\/h2>\n\n\n\n<p>Git is a version control system that allows you to track changes in your code and collaborate with others. To install Git on your server, run the following command:<\/p>\n\n\n\n<p><strong><code><em>yum -y install git<\/em><\/code><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"228\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-31-1024x228.png\" alt=\"\" class=\"wp-image-18652\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-31-1024x228.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-31-300x67.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-31-768x171.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-31.png 1360w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This command installs Git and all its dependencies.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>3. Generate an SSH Key Pair<\/strong><\/h2>\n\n\n\n<p>SSH keys provide a secure way to log into your server and authenticate with GitHub without using a password. To generate an SSH key pair, use the following command:<\/p>\n\n\n\n<p><strong><em><code>ssh-keygen -t rsa -b 4096 -C \"example@domain.com\"<\/code><\/em><\/strong><\/p>\n\n\n\n<p>Replace\u00a0<code>\"example@domain.com\"<\/code>\u00a0with your email address. This command creates a 4096-bit RSA key pair.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"374\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-32-1024x374.png\" alt=\"\" class=\"wp-image-18654\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-32-1024x374.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-32-300x110.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-32-768x281.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-32.png 1338w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>4. Copy the Public Key to GitHub<\/strong><\/h2>\n\n\n\n<p>After generating the SSH key pair, you need to copy the public key to GitHub to enable secure communication between your server and GitHub.<\/p>\n\n\n\n<p>Change to the\u00a0<code>.ssh<\/code>\u00a0directory:<\/p>\n\n\n\n<p><strong><em><code>cd ~\/.ssh<\/code><\/em><\/strong><\/p>\n\n\n\n<p>Display the public key using the\u00a0<code>cat<\/code>\u00a0command:<\/p>\n\n\n\n<p><strong><code><em>cat id_rsa.pub<\/em><\/code><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"386\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-33-1024x386.png\" alt=\"\" class=\"wp-image-18655\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-33-1024x386.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-33-300x113.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-33-768x290.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-33.png 1362w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Copy the output, which is your public key.<\/p>\n\n\n\n<p>Log in to GitHub and navigate to\u00a0<strong>Your<\/strong> <strong>Profile<\/strong> > <strong>Settings<\/strong>\u00a0>\u00a0<strong>SSH and GPG Keys<\/strong>.<\/p>\n\n\n\n<p>Click on the\u00a0<strong>New SSH Key<\/strong>\u00a0button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"347\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-34-1024x347.png\" alt=\"\" class=\"wp-image-18656\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-34-1024x347.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-34-300x102.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-34-768x260.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-34.png 1309w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Give the key a descriptive title and paste the public key into the\u00a0<strong>Key<\/strong>\u00a0field.<\/p>\n\n\n\n<p>Click\u00a0<strong>Add SSH Key<\/strong>\u00a0to save it<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"384\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-36-1024x384.png\" alt=\"\" class=\"wp-image-18658\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-36-1024x384.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-36-300x113.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-36-768x288.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-36.png 1309w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>\u00a05. Clone Your Repository on Your Server<\/strong><\/h2>\n\n\n\n<p>Once the SSH key is set up, you can clone your repository to your server.<\/p>\n\n\n\n<p>Navigate to the directory where you want to clone the repository<\/p>\n\n\n\n<p><strong><em><code>cd \/var\/www\/domain.com\/public_html<\/code><\/em><\/strong> <\/p>\n\n\n\n<p>Clone the repository:<\/p>\n\n\n\n<p><em><strong><code>git clone git@github.com:username\/repo-name.git .<\/code><\/strong><\/em><\/p>\n\n\n\n<p>Replace\u00a0<code>username<\/code>\u00a0and\u00a0<code>repo-name<\/code>\u00a0with your GitHub username and repository name, respectively.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"388\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-37-1024x388.png\" alt=\"\" class=\"wp-image-18659\" style=\"width:840px;height:auto\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-37-1024x388.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-37-300x114.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-37-768x291.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-37.png 1341w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"1\"><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>\u00a06. Reload Your Site<\/strong><\/h2>\n\n\n\n<p>After cloning the repository, your site should now load with the content from the repository. Access your site to confirm it is now accessible. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"437\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-38-1024x437.png\" alt=\"\" class=\"wp-image-18660\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-38-1024x437.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-38-300x128.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-38-768x327.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-38.png 1133w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>If you make changes locally and push them to the remote repository, you can pull the latest changes to your server using:<\/p>\n\n\n\n<p><strong><em><code>git pull origin main<\/code><\/em><\/strong><\/p>\n\n\n\n<p>Replace\u00a0<code>main<\/code>\u00a0with the branch name you want to pull (e.g.,\u00a0<code>master<\/code>\u00a0or another branch).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>7. Conclusion.<\/strong><\/h2>\n\n\n\n<p>Congratulations. You&#8217;ve successfully deployed your application to the VPS server using Git. <\/p>\n\n\n\n<p>Happy Hosting. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide will walk you through the process of performing system updates, installing Git, generating an SSH key pair, copying the public key to GitHub, cloning a repository, and troubleshooting common issues. NOTE: This guide uses AlmaLinux OS 1. Perform System Updates Before making any changes or installing new software, it&#8217;s crucial to ensure that [&hellip;]<\/p>\n","protected":false},"author":24,"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":[1879,2128],"doc_tag":[],"class_list":["post-18650","docs","type-docs","status-publish","hentry","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-07","word_count":410,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Kibera","author_nicename":"dan-k","author_url":"https:\/\/truehost.com\/support\/author\/dan-k\/"},"doc_category_info":[{"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 v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to deploy website using git on a VPS server. -<\/title>\n<meta name=\"description\" content=\"&quot;Learn how to perform system updates, install Git, generate SSH keys, and clone repositories on a Linux server.\" \/>\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-deploy-website-using-git-on-a-vps-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to deploy website using git on a VPS server. -\" \/>\n<meta property=\"og:description\" content=\"&quot;Learn how to perform system updates, install Git, generate SSH keys, and clone repositories on a Linux server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-10T08:31:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.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:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/\",\"name\":\"How to deploy website using git on a VPS server. -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/image-30-1024x255.png\",\"datePublished\":\"2025-02-10T08:31:47+00:00\",\"dateModified\":\"2025-02-10T08:31:48+00:00\",\"description\":\"\\\"Learn how to perform system updates, install Git, generate SSH keys, and clone repositories on a Linux server.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/image-30-1024x255.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/image-30-1024x255.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-deploy-website-using-git-on-a-vps-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to deploy website using git on a VPS server.\"}]},{\"@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 deploy website using git on a VPS server. -","description":"\"Learn how to perform system updates, install Git, generate SSH keys, and clone repositories on a Linux server.","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-deploy-website-using-git-on-a-vps-server\/","og_locale":"en_US","og_type":"article","og_title":"How to deploy website using git on a VPS server. -","og_description":"\"Learn how to perform system updates, install Git, generate SSH keys, and clone repositories on a Linux server.","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/","article_modified_time":"2025-02-10T08:31:48+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.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:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/","name":"How to deploy website using git on a VPS server. -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.png","datePublished":"2025-02-10T08:31:47+00:00","dateModified":"2025-02-10T08:31:48+00:00","description":"\"Learn how to perform system updates, install Git, generate SSH keys, and clone repositories on a Linux server.","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2025\/02\/image-30-1024x255.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-deploy-website-using-git-on-a-vps-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to deploy website using git on a VPS server."}]},{"@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\/18650","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\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=18650"}],"version-history":[{"count":3,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/18650\/revisions"}],"predecessor-version":[{"id":18662,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/18650\/revisions\/18662"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=18650"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=18650"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=18650"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}