{"id":16340,"date":"2024-10-31T19:23:06","date_gmt":"2024-10-31T19:23:06","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16340"},"modified":"2024-11-02T09:21:01","modified_gmt":"2024-11-02T09:21:01","password":"","slug":"how-to-install-and-configure-nginx-as-a-web-server","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/","title":{"rendered":"How to Install and Configure Nginx as a Web Server"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">What is Nginx?<\/h3>\n\n\n\n<p><strong>Nginx<\/strong> (pronounced &#8220;engine-x&#8221;) is a high-performance, open-source web server and reverse proxy server that is popular for its speed and scalability. <\/p>\n\n\n\n<p>Nginx is often used for serving static content, load balancing, caching, and as a reverse proxy for handling incoming requests to backend servers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Linux Server<\/strong> (Ubuntu, Debian, CentOS, or similar).<\/li>\n\n\n\n<li><strong>Root or sudo access<\/strong>.<\/li>\n\n\n\n<li><strong>Firewall configuration<\/strong> (optional but recommended to open HTTP\/HTTPS ports).<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update the System<\/h2>\n\n\n\n<p>Ensure that your server\u2019s package index is up-to-date:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y # For Debian\/Ubuntu systems<br>sudo yum update -y # For CentOS\/Red Hat systems<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install Nginx<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">On Ubuntu\/Debian-based Systems<\/h3>\n\n\n\n<p>Install Nginx from the default package repository:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install nginx -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">On CentOS\/RHEL-based Systems<\/h3>\n\n\n\n<p>To install Nginx on CentOS, you may need to enable the EPEL repository first:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo yum install epel-release -y\nsudo yum install nginx -y<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Start and Enable Nginx<\/h2>\n\n\n\n<p>Once installed, start the Nginx service and set it to run on boot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start nginx<br>sudo systemctl enable nginx<\/code><\/pre>\n\n\n\n<p>To check if Nginx is running, you can use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status nginx<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Configure the Firewall<\/h2>\n\n\n\n<p>If your server has a firewall enabled, allow traffic on <strong>HTTP<\/strong> (port 80) and <strong>HTTPS<\/strong> (port 443) to make Nginx accessible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">On Ubuntu\/Debian (UFW firewall)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 'Nginx Full'\nsudo ufw reload<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">On CentOS\/RHEL (firewalld)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo firewall-cmd --permanent --zone=public --add-service=http\nsudo firewall-cmd --permanent --zone=public --add-service=https\nsudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Test Nginx Installation<\/h2>\n\n\n\n<p>To verify that Nginx is installed and running correctly, open your web browser and visit your server\u2019s IP address:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;your_server_ip<\/code><\/pre>\n\n\n\n<p>You should see the default Nginx welcome page, confirming that the installation is successful.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Basic Nginx Configuration<\/h2>\n\n\n\n<p>Nginx configuration files are located in <code>\/etc\/nginx\/<\/code>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Main Configuration File:<\/strong> <code>\/etc\/nginx\/nginx.conf<\/code><\/li>\n\n\n\n<li><strong>Site-Specific Configurations:<\/strong> <code>\/etc\/nginx\/sites-available\/<\/code> and <code>\/etc\/nginx\/sites-enabled\/<\/code> (Debian-based systems)<\/li>\n\n\n\n<li><strong>Server Block Configuration:<\/strong> <code>\/etc\/nginx\/conf.d\/<\/code> (CentOS-based systems)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Editing the Main Configuration File<\/h3>\n\n\n\n<p>To edit the main configuration file, open it with a text editor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/nginx\/nginx.conf<\/code><\/pre>\n\n\n\n<p>Key sections of <code>nginx.conf<\/code> include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>worker_processes<\/strong>: Defines the number of worker processes.<\/li>\n\n\n\n<li><strong>http { &#8230; }<\/strong>: Main HTTP settings such as keepalive and GZIP compression.<\/li>\n<\/ul>\n\n\n\n<p>You can adjust these settings based on your server\u2019s resources and traffic requirements.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Setting Up Server Blocks (Virtual Hosts)<\/h2>\n\n\n\n<p>A <strong>server block<\/strong> allows Nginx to serve multiple websites from a single server by specifying site-specific configurations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">On Ubuntu\/Debian-based Systems<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Create a new configuration file<\/strong> in <code>\/etc\/nginx\/sites-available\/<\/code>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/nginx\/sites-available\/yourdomain.com<\/code><\/pre>\n\n\n\n<p>   2. <strong>Add basic server block configuration<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>server {\n    listen 80;\n    server_name yourdomain.com www.yourdomain.com;\n\n    root \/var\/www\/yourdomain.com\/html;\n    index index.html index.htm index.nginx-debian.html;\n\n    location \/ {\n        try_files $uri $uri\/ =404;\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>3. <strong>Link the configuration file<\/strong> to <code>sites-enabled<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ln -s \/etc\/nginx\/sites-available\/yourdomain.com \/etc\/nginx\/sites-enabled\/<\/code><\/pre>\n\n\n\n<p>4. <strong>Create the document root<\/strong> directory and add a test file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/var\/www\/yourdomain.com\/html\necho \"Welcome to yourdomain.com\" | sudo tee \/var\/www\/yourdomain.com\/html\/index.html<\/code><\/pre>\n\n\n\n<p>5. <strong>Adjust permissions<\/strong> to allow Nginx to access the directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R www-data:www-data \/var\/www\/yourdomain.com\/html<\/code><\/pre>\n\n\n\n<p>6. <strong>Test the Nginx configuration<\/strong> for syntax errors:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nginx -t<\/code><\/pre>\n\n\n\n<p>7. <strong>Reload Nginx<\/strong> to apply changes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl reload nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">On CentOS\/RHEL-based Systems<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Create a new configuration file<\/strong> in <code>\/etc\/nginx\/conf.d\/<\/code>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/nginx\/conf.d\/yourdomain.com.conf<\/code><\/pre>\n\n\n\n<p>   2. <strong>Add server block configuration<\/strong> (similar to above).<\/p>\n\n\n\n<p>   3. <strong>Create the document root<\/strong>, set permissions, test, and reload as done in previous steps.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8: Enable SSL (HTTPS)<\/h2>\n\n\n\n<p>Securing your site with SSL is recommended, and you can use <strong>Let\u2019s Encrypt<\/strong> for free SSL certificates.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Install Certbot<\/strong> (Let\u2019s Encrypt client):<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install certbot python3-certbot-nginx -y # Ubuntu\/Debian<br>sudo yum install certbot python3-certbot-nginx -y # CentOS\/RHEL<\/code><\/pre>\n\n\n\n<p>2. <strong>Obtain and install the SSL certificate<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot --nginx -d yourdomain.com -d www.yourdomain.com<\/code><\/pre>\n\n\n\n<p>3. <strong>Follow the prompts<\/strong> to complete the installation. Certbot will automatically update your Nginx configuration to use SSL.<\/p>\n\n\n\n<p>4. <strong>Test SSL renewal<\/strong> with a dry run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot renew --dry-run<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 9: Manage Nginx Service<\/h2>\n\n\n\n<p>Basic commands for managing Nginx:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start Nginx<\/strong>: <code>sudo systemctl start nginx<\/code><\/li>\n\n\n\n<li><strong>Stop Nginx<\/strong>: <code>sudo systemctl stop nginx<\/code><\/li>\n\n\n\n<li><strong>Restart Nginx<\/strong>: <code>sudo systemctl restart nginx<\/code><\/li>\n\n\n\n<li><strong>Reload Nginx<\/strong>: <code>sudo systemctl reload nginx<\/code> (use after configuration changes)<\/li>\n\n\n\n<li><strong>Check Nginx status<\/strong>: <code>sudo systemctl status nginx<\/code><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 10: Monitor Nginx Logs<\/h2>\n\n\n\n<p>Nginx logs are useful for troubleshooting and monitoring.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Access logs<\/strong>: <code>\/var\/log\/nginx\/access.log<\/code><\/li>\n\n\n\n<li><strong>Error logs<\/strong>: <code>\/var\/log\/nginx\/error.log<\/code><\/li>\n<\/ul>\n\n\n\n<p>You can use <code>tail -f<\/code> to monitor logs in real-time:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tail -f \/var\/log\/nginx\/access.log<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You\u2019ve now installed and configured Nginx as a web server. You\u2019ve set up server blocks, configured Nginx to serve web content, and added SSL with Let\u2019s Encrypt. Nginx\u2019s configuration flexibility and performance make it an excellent choice for serving static content, dynamic applications, and reverse proxy setups.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Nginx? Nginx (pronounced &#8220;engine-x&#8221;) is a high-performance, open-source web server and reverse proxy server that is popular for its speed and scalability. Nginx is often used for serving static content, load balancing, caching, and as a reverse proxy for handling incoming requests to backend servers. Prerequisites Step 1: Update the System Ensure that [&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-16340","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":823,"total_views":"0","reactions":{"happy":"24","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.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install and Configure Nginx as a Web Server -<\/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\/how-to-install-and-configure-nginx-as-a-web-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Configure Nginx as a Web Server -\" \/>\n<meta property=\"og:description\" content=\"What is Nginx? Nginx (pronounced &#8220;engine-x&#8221;) is a high-performance, open-source web server and reverse proxy server that is popular for its speed and scalability. Nginx is often used for serving static content, load balancing, caching, and as a reverse proxy for handling incoming requests to backend servers. Prerequisites Step 1: Update the System Ensure that [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-02T09:21:01+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:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-nginx-as-a-web-server\\\/\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-nginx-as-a-web-server\\\/\",\"name\":\"How to Install and Configure Nginx as a Web Server -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"datePublished\":\"2024-10-31T19:23:06+00:00\",\"dateModified\":\"2024-11-02T09:21:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-nginx-as-a-web-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-nginx-as-a-web-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-nginx-as-a-web-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Configure Nginx as a Web 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 Install and Configure Nginx as a Web 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:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure Nginx as a Web Server -","og_description":"What is Nginx? Nginx (pronounced &#8220;engine-x&#8221;) is a high-performance, open-source web server and reverse proxy server that is popular for its speed and scalability. Nginx is often used for serving static content, load balancing, caching, and as a reverse proxy for handling incoming requests to backend servers. Prerequisites Step 1: Update the System Ensure that [&hellip;]","og_url":"https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/","article_modified_time":"2024-11-02T09:21:01+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/","url":"https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/","name":"How to Install and Configure Nginx as a Web Server -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"datePublished":"2024-10-31T19:23:06+00:00","dateModified":"2024-11-02T09:21:01+00:00","breadcrumb":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/how-to-install-and-configure-nginx-as-a-web-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Install and Configure Nginx as a Web 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\/16340","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=16340"}],"version-history":[{"count":2,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16340\/revisions"}],"predecessor-version":[{"id":16578,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16340\/revisions\/16578"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16340"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16340"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}