{"id":82491,"date":"2026-03-02T10:35:25","date_gmt":"2026-03-02T15:35:25","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/blog\/?p=82491"},"modified":"2026-03-02T10:35:31","modified_gmt":"2026-03-02T15:35:31","slug":"network-latency-optimization-dedicated-servers","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/","title":{"rendered":"Network Latency Optimization for Dedicated Servers"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers-1024x538.png\" alt=\"Network Latency Optimization for Dedicated Servers hero\" class=\"wp-image-82492\" srcset=\"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers-300x158.png 300w, https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers-768x403.png 768w, https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers.png 1200w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n<div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Dedicated servers remove the noisy-neighbor problem, but they don&#8217;t automatically deliver low latency. The physical distance between your server and your users, along with your kernel&#8217;s TCP settings and CDN configuration, determines whether your application feels instant or sluggish. Here&#8217;s how to close that gap systematically. <\/p><\/div>\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Dedicated Infrastructure Still Has Latency Problems<\/strong><\/h2>\n\n\n\n<p>Shared hosting layers virtualization overhead on top of network hops. Dedicated servers eliminate the virtualization, but the physics of signal propagation remains. Light travels through fiber at roughly 200,000 km\/s which means a round trip from Los Angeles to Amsterdam is mathematically constrained to around 90ms before any application processing begins.<\/p>\n\n\n\n<p>That baseline matters. If your users are distributed globally but your dedicated server sits in one data center, some of them will always experience that round-trip penalty. The goal isn&#8217;t to beat physics; it&#8217;s to minimize every controllable variable on top of it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1: Data Center Selection Is a Latency Decision<\/strong><\/h2>\n\n\n\n<p>Most teams pick a data center based on price or availability, then spend months trying to optimize their way out of a geography problem. Choose your data center based on where the majority of your production traffic originates \u2014 and benchmark before you commit.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\">InMotion Hosting<\/a> operates data centers in <strong>Los Angeles<\/strong> and <strong>Amsterdam<\/strong>, which covers North American and European traffic concentrations respectively. If your application serves primarily US West Coast users, the LA facility will deliver measurably lower latency than any East Coast alternative. European user bases benefit from the Amsterdam location&#8217;s peering relationships with major European internet exchanges.<\/p>\n\n\n\n<p>Tools worth running before signing any contract:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>mtr<\/strong> (My Traceroute): Shows per-hop latency and packet loss in real time, not just the final RTT ping gives you.<\/li>\n\n\n\n<li><strong>traceroute<\/strong>: Maps the routing path between your test machine and the data center IP.<\/li>\n\n\n\n<li><strong>iPerf3<\/strong>: Measures actual bandwidth and jitter under load, not theoretical maximums.<\/li>\n<\/ul>\n\n\n\n<p>Run these tests from machines located where your users actually are \u2014 not from your own office. <a href=\"https:\/\/developers.cloudflare.com\/network-interconnect\/\">According to Cloudflare&#8217;s network performance data<\/a>, geographic proximity to a major internet exchange can reduce RTT by 30-50ms compared to routing through a distant hub.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 2: CDN Integration Reduces the Distance Problem<\/strong><\/h2>\n\n\n\n<p>A CDN doesn&#8217;t make your server faster \u2014 it reduces how often users have to reach your server at all. Static assets (CSS, JS, images, video) served from an edge node 10ms away versus your dedicated server 80ms away is a 70ms win on every page load, multiplied by every asset on the page.<\/p>\n\n\n\n<p>For dedicated server operators, CDN integration typically means one of two approaches:<\/p>\n\n\n\n<p><strong>Full CDN proxying<\/strong>: All traffic passes through the CDN layer. Cloudflare&#8217;s Enterprise tier and Fastly both support this model. Your dedicated server handles only cache misses and dynamic requests. <a href=\"https:\/\/www.cloudflare.com\/learning\/cdn\/what-is-a-cdn\/\">Cloudflare reports<\/a> that properly configured CDN deployments reduce origin server load by 60-90%.<\/p>\n\n\n\n<p><strong>Partial offloading<\/strong>: You point only specific subdomains or asset paths through the CDN while keeping API endpoints and authenticated routes direct to your server. This model requires more configuration but gives you granular control over what gets cached and what must always hit origin.<\/p>\n\n\n\n<p>For latency-critical applications, the key configuration is CDN origin connection settings. Make sure the CDN connects to your server over HTTP\/2 (or HTTP\/3 where supported) \u2014 the multiplexing eliminates head-of-line blocking on the connection between the CDN edge and your server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 3: Linux TCP Stack Tuning on Your Dedicated Server<\/strong><\/h2>\n\n\n\n<p>This is where dedicated servers give you something VPS environments typically don&#8217;t: the ability to modify kernel parameters. SSH into your server and check your current TCP configuration:<\/p>\n\n\n\n<p>sysctl net.core.somaxconn<\/p>\n\n\n\n<p>sysctl net.ipv4.tcp_max_syn_backlog<\/p>\n\n\n\n<p>sysctl net.ipv4.tcp_congestion_control<\/p>\n\n\n\n<p>Several settings directly affect application latency under concurrent load:<\/p>\n\n\n\n<p><strong>TCP Congestion Control Algorithm<\/strong>: The Linux kernel defaults to Cubic for congestion control. <a href=\"https:\/\/cloud.google.com\/blog\/products\/networking\/tcp-bbr-congestion-control-comes-to-gcp-your-internet-just-got-faster\">BBR (Bottleneck Bandwidth and Round-trip propagation time)<\/a>, developed by Google, significantly outperforms Cubic on high-latency connections and moderate packet loss. Enable it with:<\/p>\n\n\n\n<p>echo &#8220;net.core.default_qdisc=fq&#8221; &gt;&gt; \/etc\/sysctl.conf<\/p>\n\n\n\n<p>echo &#8220;net.ipv4.tcp_congestion_control=bbr&#8221; &gt;&gt; \/etc\/sysctl.conf<\/p>\n\n\n\n<p>sysctl -p<\/p>\n\n\n\n<p><strong>TCP Buffer Sizes<\/strong>: Default kernel buffer sizes were set for a different era of network speeds. On 1Gbps+ connections, undersized buffers become a throughput ceiling:<\/p>\n\n\n\n<p>echo &#8220;net.core.rmem_max=134217728&#8221; &gt;&gt; \/etc\/sysctl.conf<\/p>\n\n\n\n<p>echo &#8220;net.core.wmem_max=134217728&#8221; &gt;&gt; \/etc\/sysctl.conf<\/p>\n\n\n\n<p>echo &#8220;net.ipv4.tcp_rmem=4096 87380 67108864&#8221; &gt;&gt; \/etc\/sysctl.conf<\/p>\n\n\n\n<p>echo &#8220;net.ipv4.tcp_wmem=4096 65536 67108864&#8221; &gt;&gt; \/etc\/sysctl.conf<\/p>\n\n\n\n<p>sysctl -p<\/p>\n\n\n\n<p><strong>TCP_NODELAY for Low-Latency APIs<\/strong>: If your application runs an API where latency matters more than throughput, enable TCP_NODELAY at the socket level in your application code. This disables Nagle&#8217;s algorithm, which batches small packets \u2014 useful for bulk transfers, counterproductive for request-response APIs where you want each response sent immediately.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 4: Measure What You Changed<\/strong><\/h2>\n\n\n\n<p>Optimization without measurement is guesswork. Before touching any settings, establish a baseline with real numbers:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Time To First Byte (TTFB)<\/strong>: Measure from multiple geographic locations using <a href=\"https:\/\/www.webpagetest.org\/\">WebPageTest<\/a>. Target under 200ms for the primary user region.<\/li>\n\n\n\n<li><strong>p95 and p99 latency<\/strong>: Average latency hides the spikes that users actually complain about. Your monitoring needs to track percentiles.<\/li>\n\n\n\n<li><strong>Network interface statistics<\/strong>: netstat -s | grep -i retransmit shows TCP retransmission counts \u2014 high numbers indicate packet loss that&#8217;s inflating your latency.<\/li>\n<\/ul>\n\n\n\n<p>After applying changes, run the same tests. Improvements in TTFB of 20-40ms are typical from TCP tuning alone on under-configured servers. <a href=\"https:\/\/web.dev\/articles\/ttfb\">Studies on web performance<\/a> consistently show each 100ms of TTFB reduction correlates to measurable improvements in conversion rates for ecommerce applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 5: Bandwidth Tier and Burstability<\/strong><\/h2>\n\n\n\n<p>InMotion&#8217;s dedicated servers ship with 10Gbps burstable bandwidth. For most workloads, this is sufficient. For applications that routinely push high throughput \u2014 video delivery, large file transfers, or high-frequency API responses \u2014 upgrading to guaranteed unmetered 10Gbps eliminates the possibility of bandwidth contention during peak periods affecting your latency numbers.<\/p>\n\n\n\n<p>Bandwidth saturation causes queue buildup, and queue buildup adds latency. If your iftop or nethogs shows consistent near-peak utilization, the bandwidth tier, not the TCP settings, is the actual constraint.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Network Latency Is Infrastructure Design, Not Troubleshooting<\/strong><\/h2>\n\n\n\n<p>The teams that run the lowest-latency dedicated server deployments treat geography, CDN configuration, and kernel settings as first-class infrastructure decisions not afterthoughts. They pick the right data center for their user distribution, push static assets to the edge, and tune the kernel to match the bandwidth they&#8217;re paying for.<\/p>\n\n\n\n<p>The good news: a well-configured dedicated server with <a href=\"https:\/\/www.inmotionhosting.com\/about-us\/data-centers\" target=\"_blank\" rel=\"noreferrer noopener\">InMotion Hosting&#8217;s Los Angeles or Amsterdam facilities<\/a> gives you the raw material to hit those targets. The configuration is yours to own.<\/p>\n\n\n\n<p><strong>Related reading<\/strong>: <strong><a href=\"https:\/\/www.inmotionhosting.com\/blog\/what-is-server-monitoring\/\" type=\"post\" id=\"78028\">Server Resource Monitoring &amp; Performance Tuning<\/a><\/strong> | <strong><a href=\"https:\/\/www.inmotionhosting.com\/blog\/what-is-a-dedicated-server\/\" type=\"post\" id=\"5992\">DDoS Protection Strategies for Dedicated Infrastructure<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dedicated servers remove the noisy-neighbor problem, but they don&#8217;t automatically deliver low latency. The physical distance between your server and your users, along with your kernel&#8217;s TCP settings and CDN configuration, determines whether your application feels instant or sluggish. Here&#8217;s how to close that gap systematically.<\/p>\n","protected":false},"author":116,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[355],"tags":[],"class_list":["post-82491","post","type-post","status-publish","format-standard","hentry","category-dedicated-server-hosting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Network Latency Optimization for Dedicated Servers | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Reduce latency on dedicated servers with data center selection, CDN integration, and TCP tuning. Real strategies for sub-20ms performance.\" \/>\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\/blog\/network-latency-optimization-dedicated-servers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Network Latency Optimization for Dedicated Servers | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Reduce latency on dedicated servers with data center selection, CDN integration, and TCP tuning. Real strategies for sub-20ms performance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-02T15:35:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-02T15:35:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sam Page\" \/>\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=\"Sam Page\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Network Latency Optimization for Dedicated Servers | InMotion Hosting","description":"Reduce latency on dedicated servers with data center selection, CDN integration, and TCP tuning. Real strategies for sub-20ms performance.","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\/blog\/network-latency-optimization-dedicated-servers\/","og_locale":"en_US","og_type":"article","og_title":"Network Latency Optimization for Dedicated Servers | InMotion Hosting","og_description":"Reduce latency on dedicated servers with data center selection, CDN integration, and TCP tuning. Real strategies for sub-20ms performance.","og_url":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/","og_site_name":"InMotion Hosting Blog","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting","article_published_time":"2026-03-02T15:35:25+00:00","article_modified_time":"2026-03-02T15:35:31+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers.png","type":"image\/png"}],"author":"Sam Page","twitter_card":"summary_large_image","twitter_creator":"@inmotionhosting","twitter_site":"@inmotionhosting","twitter_misc":{"Written by":"Sam Page","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/"},"author":{"name":"Sam Page","@id":"https:\/\/www.inmotionhosting.com\/blog\/#\/schema\/person\/b459c4b748083c4f8431d5312e795796"},"headline":"Network Latency Optimization for Dedicated Servers","datePublished":"2026-03-02T15:35:25+00:00","dateModified":"2026-03-02T15:35:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/"},"wordCount":1067,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers-1024x538.png","articleSection":["Dedicated Server Articles"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/","url":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/","name":"Network Latency Optimization for Dedicated Servers | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers-1024x538.png","datePublished":"2026-03-02T15:35:25+00:00","dateModified":"2026-03-02T15:35:31+00:00","description":"Reduce latency on dedicated servers with data center selection, CDN integration, and TCP tuning. Real strategies for sub-20ms performance.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers.png","contentUrl":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Network-Latency-Optimization-for-Dedicated-Servers.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/blog\/network-latency-optimization-dedicated-servers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Dedicated Server Articles","item":"https:\/\/www.inmotionhosting.com\/blog\/dedicated-server-hosting\/"},{"@type":"ListItem","position":3,"name":"Network Latency Optimization for Dedicated Servers"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/blog\/#website","url":"https:\/\/www.inmotionhosting.com\/blog\/","name":"InMotion Hosting Blog","description":"Web Hosting Strategy, Trends and Security","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/blog\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2019\/11\/imh-logo-all-colors-big.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2019\/11\/imh-logo-all-colors-big.jpg","width":1630,"height":430,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting","https:\/\/x.com\/inmotionhosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/blog\/#\/schema\/person\/b459c4b748083c4f8431d5312e795796","name":"Sam Page","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/35c230f33cd7aacf52f0f53bc02230a2ee7840b5b221af549d491ab98f65a363?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/35c230f33cd7aacf52f0f53bc02230a2ee7840b5b221af549d491ab98f65a363?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/35c230f33cd7aacf52f0f53bc02230a2ee7840b5b221af549d491ab98f65a363?s=96&r=g","caption":"Sam Page"},"url":"https:\/\/www.inmotionhosting.com\/blog\/author\/samp\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":355,"name":"Dedicated Server Articles","slug":"dedicated-server-hosting","link":"https:\/\/www.inmotionhosting.com\/blog\/dedicated-server-hosting\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/posts\/82491","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/users\/116"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/comments?post=82491"}],"version-history":[{"count":1,"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/posts\/82491\/revisions"}],"predecessor-version":[{"id":82493,"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/posts\/82491\/revisions\/82493"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/media?parent=82491"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/categories?post=82491"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/blog\/wp-json\/wp\/v2\/tags?post=82491"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}