{"id":4565,"date":"2018-07-05T15:18:21","date_gmt":"2018-07-05T15:18:21","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/07\/05\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/"},"modified":"2021-08-16T22:27:00","modified_gmt":"2021-08-17T02:27:00","slug":"how-to-configure-nginx-reverse-proxy-ubuntu-16","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/","title":{"rendered":"How to Configure Nginx Reverse Proxy (Ubuntu 16)"},"content":{"rendered":"<p>Nginx is becoming a highly popular option for users looking for a powerful resource-friendly web server or a reverse proxy to their existing Apache server configuration.<\/p>\n<p>In this article, we&#8217;ll show you how to install Nginx in your Ubuntu 16 Cloud VPS Hosting account and set it up as a reverse proxy for Apache.<\/p>\n<h2 id=\"org9b34fa7\">Apache is Already Installed<\/h2>\n<p>You may have noticed when first setting up your account that Apache is already installed and working as your active web server. (You can verify this by visiting your primary domain and seeing the Ubuntu server default page.)<\/p>\n<p>This means you&#8217;ll likely find most success using Nginx as a reverse proxy, which we will show you how to do in this article.<\/p>\n<h2 id=\"org3f2f1d5\">Install Nginx<\/h2>\n<p>The first step in this process is to install Nginx. Make sure you are logged into your VPS with the <a href=\"\/support\/product-guides\/cloud-server\/create-sudo-user-ubuntu-16\/\">sudo user you created<\/a>. You will just need to run this command and respond &#8220;Yes&#8221; to any installation prompts that may pop up:<\/p>\n<pre class=\"cli\">sudo apt-get -y install nginx<\/pre>\n<p>Once the installation is complete, we will begin configuring Apache and Nginx.<\/p>\n<h2 id=\"org484a974\">Configure Apache<\/h2>\n<p>We will first need to change the default ports for accessing Apache. By changing the default port for Apache, we will be making sure that Nginx has the first opportunity to serve any static resources needed.<\/p>\n<p>You can use the nano text editor to edit the ports file:<\/p>\n<pre class=\"cli\">sudo nano \/etc\/apache2\/ports.conf<\/pre>\n<p>Update the &#8220;Listen&#8221; line, changing the port number from 80 to 8000:<\/p>\n<pre class=\"cli\"><span style=\"color: red;\">- Listen 80<\/span>\n<span style=\"color: green;\">+ Listen 8000<\/span><\/pre>\n<p>We will also need to edit the configuration file for virtual hosts:<\/p>\n<pre class=\"cli\">sudo nano \/etc\/apache2\/sites-available\/000-default.conf<\/pre>\n<p>Changing the port again:<\/p>\n<pre class=\"cli\"><span style=\"color: red;\">- &lt;VirtualHost 127.0.0.1:80&gt;<\/span>\n<span style=\"color: green;\">+ &lt;VirtualHost 127.0.0.1:8000&gt;<\/span><\/pre>\n<p>Make sure to restart the Apache service:<\/p>\n<pre class=\"cli\">sudo service apache2 restart<\/pre>\n<p>Those are the essential configurations for Apache. There are more advanced configurations you can apply, but these port changes cover the basics.<\/p>\n<h2 id=\"orgb59b8a6\">Configure Nginx<\/h2>\n<p>Now we will need to configure Nginx to serve as our reverse proxy.<\/p>\n<p>Make sure that Nginx services are enabled:<\/p>\n<pre class=\"cli\">sudo systemctl enable nginx.service<\/pre>\n<p>Restart Nginx to make sure any changes are applied:<\/p>\n<pre class=\"cli\">sudo service nginx restart<\/pre>\n<p>Now we will add some proxy parameters to the necessary configuration file:<\/p>\n<pre class=\"cli\">sudo nano \/etc\/nginx\/proxy_params<\/pre>\n<p>Add the extra parameters to the bottom of the <code>proxy_params<\/code> file (Bear in mind, the <code>+<\/code> signs are added to demonstrate the additional lines and should not be included in your file. For a plain text version of the file you can copy and paste, click <a href=\"https:\/\/gist.githubusercontent.com\/ccchristopherm\/e345555c022f1f4152964a59232b5e60\/raw\/41cf05af3fd4a02ccffa90323b3290b2264ce2a7\/gistfile1.txt\" target=\"_blank\" rel=\"noopener\">here<\/a>.):<\/p>\n<pre class=\"cli\">proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme;  <span style=\"color: green;\">+ client_max_body_size 100M; + client_body_buffer_size 1m; + proxy_intercept_errors on; + proxy_buffering on; + proxy_buffer_size 128k; + proxy_buffers 256 16k; + proxy_busy_buffers_size 256k; + proxy_temp_file_write_size 256k; + proxy_max_temp_file_size 0; + proxy_read_timeout 300;<\/span><\/pre>\n<p>As we did above for Apache, we will next be editing the virtual hosts configuration file, this time for Nginx:<\/p>\n<pre class=\"cli\">sudo nano \/etc\/nginx\/sites-available\/default<\/pre>\n<p>Make sure that the document root is the same for Nginx, and make sure to include our proxy parameters file. An easy way to make this change would be copy your existing configuration file first:<\/p>\n<pre class=\"cli\">sudo cp \/etc\/nginx\/sites-available\/default \/etc\/nginx\/sites-available\/default-dist<\/pre>\n<p>Now you have an untouched version of the file your distribution came with; this way you can safely delete the contents of the original and paste in these lines:<\/p>\n<pre class=\"cli\">server {     listen 80 default_server;     listen [::]:80 default_server;      root \/var\/www\/html;      # Add index.php to the list if you are using PHP     index index.html index.htm index.nginx-debian.html;      server_name _;      location \/ {       proxy_pass https:\/\/localhost:8000;       include \/etc\/nginx\/proxy_params;     } }<\/pre>\n<p>Make sure to &#8220;reload&#8221; Nginx in order to apply these new settings.<\/p>\n<pre class=\"cli\">sudo service nginx reload<\/pre>\n<h2 id=\"orge1c4d99\">How to Test Your Configuration<\/h2>\n<p>You&#8217;ll notice that if you reload your page in a browser, you will not see any immediate change. So how do we know if our changes took effect?<\/p>\n<p>There are many different ways to do this, but one easy way is to run this command from your local computer in a new terminal window, of course making sure to substitute &#8220;https:\/\/example.com&#8221; for the primary domain of your site:<\/p>\n<pre class=\"cli\">curl -s -D - \"https:\/\/example.com\" | grep \"^Server:\"<\/pre>\n<p>The output of this command will return information about your server. If you see &#8220;Server: nginx\/1.10.3 (Ubuntu)&#8221; then you completed this tutorial correctly and you now have Nginx configured as a reverse proxy for Apache.<\/p>\n\n\n<p>Learn more from our <a href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/\">Cloud Server Hosting Product Guide<\/a>.<\/p>\n\n\n<div class=\"jumbotron\"><p>With our <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud Server Hosting<\/a>, you can deploy a lightning-fast, reliable cloud platform with built-in redundancy \u2013 ensuring the availability of your environment!<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Nginx is becoming a highly popular option for users looking for a powerful resource-friendly web server or a reverse proxy to their existing Apache server configuration. In this article, we&#8217;ll show you how to install Nginx in your Ubuntu 16 Cloud VPS Hosting account and set it up as a reverse proxy for Apache. Apache<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4370],"tags":[],"class_list":["post-4565","post","type-post","status-publish","format-standard","hentry","category-cloud-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Configure Nginx Reverse Proxy (Ubuntu 16) | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll show you how to install Nginx and configure it as a reverse proxy for Apache with Cloud VPS hosting.\" \/>\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.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Configure Nginx Reverse Proxy (Ubuntu 16) | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll show you how to install Nginx and configure it as a reverse proxy for Apache with Cloud VPS hosting.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-05T15:18:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T02:27:00+00:00\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Configure Nginx Reverse Proxy (Ubuntu 16)\",\"datePublished\":\"2018-07-05T15:18:21+00:00\",\"dateModified\":\"2021-08-17T02:27:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\"},\"wordCount\":597,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Cloud Server Hosting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\",\"name\":\"How to Configure Nginx Reverse Proxy (Ubuntu 16) | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2018-07-05T15:18:21+00:00\",\"dateModified\":\"2021-08-17T02:27:00+00:00\",\"description\":\"In this article, we'll show you how to install Nginx and configure it as a reverse proxy for Apache with Cloud VPS hosting.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Configure Nginx Reverse Proxy (Ubuntu 16)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Configure Nginx Reverse Proxy (Ubuntu 16) | InMotion Hosting","description":"In this article, we'll show you how to install Nginx and configure it as a reverse proxy for Apache with Cloud VPS hosting.","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.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/","og_locale":"en_US","og_type":"article","og_title":"How to Configure Nginx Reverse Proxy (Ubuntu 16) | InMotion Hosting","og_description":"In this article, we'll show you how to install Nginx and configure it as a reverse proxy for Apache with Cloud VPS hosting.","og_url":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-07-05T15:18:21+00:00","article_modified_time":"2021-08-17T02:27:00+00:00","author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Configure Nginx Reverse Proxy (Ubuntu 16)","datePublished":"2018-07-05T15:18:21+00:00","dateModified":"2021-08-17T02:27:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/"},"wordCount":597,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Cloud Server Hosting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/","url":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/","name":"How to Configure Nginx Reverse Proxy (Ubuntu 16) | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2018-07-05T15:18:21+00:00","dateModified":"2021-08-17T02:27:00+00:00","description":"In this article, we'll show you how to install Nginx and configure it as a reverse proxy for Apache with Cloud VPS hosting.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/how-to-configure-nginx-reverse-proxy-ubuntu-16\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Configure Nginx Reverse Proxy (Ubuntu 16)"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4565","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=4565"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4565\/revisions"}],"predecessor-version":[{"id":83668,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4565\/revisions\/83668"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4565"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4565"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}