{"id":413,"date":"2026-06-16T11:53:26","date_gmt":"2026-06-16T11:53:26","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=413"},"modified":"2026-06-16T11:53:26","modified_gmt":"2026-06-16T11:53:26","slug":"how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/","title":{"rendered":"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Remote Desktop Gateway (RD Gateway) lets authorized users connect to internal network resources \u2014 such as other Windows VMs, desktop PCs, or application servers \u2014 over the internet using encrypted RDP tunnels without exposing individual machines directly. Setting up RD Gateway on your Windows VPS provides a secure, audited entry point for remote access that centralizes authentication and firewall management.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are evaluating Windows VPS options to host RD Gateway, <a href=\"https:\/\/windows-vps.org\/\">compare Windows VPS plans<\/a> with attention to network throughput and inbound traffic allowances \u2014 both critical for gateway performance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Windows VPS running Windows Server 2019, 2022, or 2025 (Standard or Datacenter edition)<\/li>\n<li>Static public IP address assigned to the VPS<\/li>\n<li>An SSL certificate (self-signed for testing, trusted CA for production)<\/li>\n<li>Active Directory domain (optional \u2014 RD Gateway works with local accounts too)<\/li>\n<li>Port 443 (HTTPS) open on the firewall for RD Gateway connections<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Install the Remote Desktop Services Role<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Open Server Manager and add the RD Gateway role via PowerShell or the GUI.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>PowerShell method<\/strong> (run as Administrator):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Install-WindowsFeature -Name RDS-Gateway -IncludeManagementTools<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>GUI method<\/strong>:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>Server Manager \u2192 Manage \u2192 Add Roles and Features<\/strong><\/li>\n<li>Select <strong>Remote Desktop Services \u2192 Remote Desktop Gateway<\/strong><\/li>\n<li>Include management tools and complete the installation<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The installation takes 5\u201310 minutes and adds the <strong>RD Gateway Manager<\/strong> console to your Administrative Tools.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Obtain and Install an SSL Certificate<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">RD Gateway requires an SSL certificate bound to port 443. The certificate Common Name (CN) must match the gateway&#8217;s public hostname (e.g., <code>gateway.yourdomain.com<\/code>).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Option A \u2014 Let&#8217;s Encrypt (free, recommended)<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Using Win-ACME\nwacs.exe --run --accepttos --installation memory --webroot C:\\inetpub\\wwwroot<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Option B \u2014 Self-signed for testing<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>New-SelfSignedCertificate -DnsName &quot;gateway.yourdomain.com&quot; -CertStoreLocation &quot;Cert:\\LocalMachine\\My&quot;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After installing the certificate, take note of its thumbprint \u2014 you will need it for the RD Gateway policy configuration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Configure RD Gateway Policies<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">RD Gateway uses two types of policies: <strong>connection authorization policies (RD CAP)<\/strong> that control who can connect, and <strong>resource authorization policies (RD RAP)<\/strong> that control which internal machines users can reach.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Configure RD CAP<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>RD Gateway Manager<\/strong><\/li>\n<li>Right-click the server name \u2192 <strong>Properties<\/strong><\/li>\n<li>Go to the <strong>RD CAP<\/strong> tab \u2192 <strong>Create New Policy<\/strong><\/li>\n<li>Name the policy (e.g., <code>Allow Domain Users CAP<\/code>)<\/li>\n<li>Under <strong>User Groups<\/strong>, add the groups or individual users allowed to connect (e.g., <code>DOMAIN\\Remote Desktop Users<\/code>)<\/li>\n<li>Under <strong>Device Groups<\/strong>, choose <strong>Allow connections from any device<\/strong> (or restrict to specific groups)<\/li>\n<li>Enable <strong>Password authentication<\/strong> and optionally <strong>Smart card authentication<\/strong><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Configure RD RAP<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>In the same <strong>Properties<\/strong> dialog, go to the <strong>RD RAP<\/strong> tab \u2192 <strong>Create New Policy<\/strong><\/li>\n<li>Select <strong>Allow connections to any network resource<\/strong> (for general access) or <strong>Allow connections to specific network resources<\/strong> (to restrict to certain IPs or hostnames)<\/li>\n<li>Define the computer groups or IP ranges that users can access through the gateway<\/li>\n<li>Set port numbers: keep <strong>3389<\/strong> as default (RDP) unless you are using custom ports<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Important security note<\/strong>: Restrict RD RAP to specific network resources in production environments. An RD RAP set to &quot;any network resource&quot; essentially grants VPN-like access through the gateway.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Associate the SSL Certificate with RD Gateway<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In <strong>RD Gateway Manager<\/strong>, right-click your server \u2192 <strong>Properties<\/strong> \u2192 <strong>SSL Certificate<\/strong> tab. Select <strong>Import an existing certificate<\/strong> and choose the certificate you installed in Step 2. The gateway binds this certificate to port 443 for encrypted client connections.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Verify the binding with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netsh http show sslcert | findstr &quot;443&quot;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Configure the Windows Firewall<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">RD Gateway uses HTTPS (port 443) for client connections and UDP 3391 for transport. Open these ports on the Windows Firewall:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>New-NetFirewallRule -DisplayName &quot;RD Gateway HTTPS&quot; -Direction Inbound -Protocol TCP -LocalPort 443 -Action Allow\nNew-NetFirewallRule -DisplayName &quot;RD Gateway UDP&quot; -Direction Inbound -Protocol UDP -LocalPort 3391 -Action Allow<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Also ensure the <strong>Remote Desktop Services (RD Gateway)<\/strong> inbound rule is enabled in Windows Firewall with Advanced Security.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Configure the Internal Network Resource Access<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If the internal RDP targets are on the same VPS, you can use <code>localhost<\/code> or <code>127.0.0.1<\/code> as the target. For remote machines on different subnets:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure the target machines have RDP enabled (System Properties \u2192 Remote \u2192 Allow remote connections)<\/li>\n<li>Add the RD Gateway server&#8217;s IP to the target machine&#8217;s firewall allow list for port 3389<\/li>\n<li>If using Active Directory, ensure the target machines are domain-joined and the user has appropriate remote access permissions<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Test the RD Gateway Connection<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">From a client machine (Windows 10\/11):<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>Remote Desktop Connection<\/strong> (mstsc.exe)<\/li>\n<li>Click <strong>Show Options \u2192 Advanced \u2192 Settings<\/strong><\/li>\n<li>Under <strong>RD Gateway Server Settings<\/strong>, select <strong>Use these RD Gateway server settings<\/strong><\/li>\n<li>Enter the gateway hostname (e.g., <code>gateway.yourdomain.com<\/code>)<\/li>\n<li>Under <strong>Logon method<\/strong>, select <strong>Ask for password (NTLM)<\/strong><\/li>\n<li>Go back to the <strong>General<\/strong> tab and enter the target machine&#8217;s internal IP or hostname<\/li>\n<li>Click <strong>Connect<\/strong><\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If the connection succeeds, you have a fully functional RD Gateway. If it fails, check the <strong>RD Gateway Manager \u2192 Monitoring<\/strong> tab for connection failure reasons.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting Common RD Gateway Issues<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Issue<\/th><th>Likely Cause<\/th><th>Fix<\/th><\/tr><\/thead><tbody><tr><td>Connection times out<\/td><td>Port 443 blocked on firewall<\/td><td>Verify inbound rule for TCP 443 exists and is enabled<\/td><\/tr><tr><td>Certificate warning<\/td><td>Self-signed or expired certificate<\/td><td>Install a trusted CA certificate or update the existing one<\/td><\/tr><tr><td>Access Denied<\/td><td>RD CAP\/RAP policies not configured<\/td><td>Check both RD CAP and RD RAP \u2014 both must match the user<\/td><\/tr><tr><td>Target machine unreachable<\/td><td>Network routing or firewall on target<\/td><td>Ensure target allows RDP from gateway IP on port 3389<\/td><\/tr><tr><td>SSL error 0x80090302<\/td><td>Certificate not bound to port 443<\/td><td>Re-import the certificate in RD Gateway Manager properties<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Performance and Scalability Considerations for RD Gateway on a VPS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">RD Gateway performance depends on your VPS resources. Current experience with different configurations:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>VPS Spec<\/th><th>Max Concurrent Connections<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td>1 vCPU, 1 GB RAM<\/td><td>5\u201310<\/td><td>Adequate for personal or small team use<\/td><\/tr><tr><td>2 vCPU, 2 GB RAM<\/td><td>15\u201325<\/td><td>Good for a department or SMB<\/td><\/tr><tr><td>4 vCPU, 4 GB RAM<\/td><td>30\u201350<\/td><td>Sufficient for most organizations<\/td><\/tr><tr><td>8 vCPU, 8+ GB RAM<\/td><td>100+<\/td><td>Enterprise gateway with high throughput<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">For team deployments, choose a Windows VPS with at least 2 vCPUs and 2 GB RAM to ensure smooth concurrent connections. Visit the <a href=\"https:\/\/windows-vps.org\/\">Windows VPS comparison page<\/a> to find plans with sufficient network bandwidth for gateway traffic.<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>Remote Desktop Gateway (RD Gateway) lets authorized users connect to internal network resources \u2014 such as other Windows VMs, desktop PCs, or application servers \u2014 over the internet using encrypted RDP tunnels without exposing individual machines directly. Setting up RD Gateway on your Windows VPS provides a secure, audited entry point for remote access that &#8230; <a title=\"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide\" class=\"read-more\" href=\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/\" aria-label=\"Read more about How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":0,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-413","post","type-post","status-publish","format-standard","hentry","category-tutorials-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide - Windows VPS Blog<\/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:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide\" \/>\n<meta property=\"og:description\" content=\"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-16T11:53:26+00:00\" \/>\n<meta name=\"author\" content=\"windows-vps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"windows-vps\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/\",\"name\":\"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"datePublished\":\"2026-06-16T11:53:26+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\",\"url\":\"https:\/\/windows-vps.org\/blog\/\",\"name\":\"Windows VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/windows-vps.org\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\",\"name\":\"windows-vps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"caption\":\"windows-vps\"},\"sameAs\":[\"https:\/\/windows-vps.org\/blog\"],\"url\":\"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide - Windows VPS Blog","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:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide","og_description":"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide","og_url":"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/","og_site_name":"Windows VPS Blog","article_published_time":"2026-06-16T11:53:26+00:00","author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/","url":"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/","name":"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"datePublished":"2026-06-16T11:53:26+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/how-to-set-up-remote-desktop-gateway-on-windows-vps-a-step-by-step-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set Up Remote Desktop Gateway on Windows VPS: A Step-by-Step Guide"}]},{"@type":"WebSite","@id":"https:\/\/windows-vps.org\/blog\/#website","url":"https:\/\/windows-vps.org\/blog\/","name":"Windows VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/windows-vps.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58","name":"windows-vps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","caption":"windows-vps"},"sameAs":["https:\/\/windows-vps.org\/blog"],"url":"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/"}]}},"_links":{"self":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/413","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/comments?post=413"}],"version-history":[{"count":1,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/413\/revisions"}],"predecessor-version":[{"id":416,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/413\/revisions\/416"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=413"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=413"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}