{"id":963,"date":"2026-08-24T23:18:35","date_gmt":"2026-08-24T23:18:35","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=963"},"modified":"2026-08-24T23:18:35","modified_gmt":"2026-08-24T23:18:35","slug":"wireguard-vpn-vps-setup-security-hardening","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/","title":{"rendered":"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">WireGuard is a modern VPN protocol that uses state-of-the-art cryptography and fits in under 4,000 lines of kernel code. Unlike OpenVPN or IPsec, WireGuard is designed for simplicity: a single configuration file per peer, no certificate authorities, and no connection daemon to manage. This guide covers deploying WireGuard on a VPS as a remote access VPN, configuring clients on Linux, macOS, and Windows, and setting up site-to-site networking between multiple VPS instances.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why WireGuard for VPS Access?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every VPS exposes at least one public service (SSH, web server, database). Reducing the attack surface by restricting access to a VPN is a fundamental security practice. WireGuard is ideal for this because:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Minimal attack surface:<\/strong> WireGuard does not accept connections until a peer is configured with the correct public key. There is no authentication daemon, no handshake protocol for unauthorized clients, and no logging of failed attempts.<\/li>\n<li><strong>Kernel-level performance:<\/strong> On Linux, WireGuard runs as a kernel module (built into kernel 5.6+), meaning encryption and encapsulation happen at the network stack layer with negligible overhead.<\/li>\n<li><strong>Roaming support:<\/strong> WireGuard handles IP address changes transparently. A laptop moving from Wi-Fi to cellular does not drop the VPN connection.<\/li>\n<li><strong>Cryptographic soundness:<\/strong> WireGuard uses Curve25519 for key exchange, ChaCha20 for encryption, and Poly1305 for authentication \u2014 all modern, well-audited primitives.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Installation<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Server (VPS) Installation<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Ubuntu\/Debian\nsudo apt update\nsudo apt install wireguard wireguard-tools\n\n# Verify the kernel module is loaded\nsudo modprobe wireguard\nlsmod | grep wireguard<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Client Installation<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Linux:<\/strong> <code>sudo apt install wireguard-tools<\/code><\/li>\n<li><strong>macOS:<\/strong> <code>brew install wireguard-tools<\/code> or use the official macOS app from the App Store.<\/li>\n<li><strong>Windows:<\/strong> Download the official WireGuard installer from <a href=\"https:\/\/www.wireguard.com\/install\/\" target=\"_blank\">wireguard.com\/install<\/a>.<\/li>\n<li><strong>Android\/iOS:<\/strong> Official apps are available on the Play Store and App Store.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Key Generation<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WireGuard uses Curve25519 key pairs. Generate a key pair for the server and each client:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Generate private key (keep this secret!)\nwg genkey | sudo tee \/etc\/wireguard\/server.key\nsudo chmod 600 \/etc\/wireguard\/server.key\n\n# Derive the public key from the private key\nsudo cat \/etc\/wireguard\/server.key | wg pubkey | sudo tee \/etc\/wireguard\/server.pub\n\n# On each client, generate a key pair the same way\nwg genkey | tee client1.key\ncat client1.key | wg pubkey | tee client1.pub<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Store the private key securely on the device where it was generated. The public key is safe to share \u2014 it is the WireGuard equivalent of an account number.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Server Configuration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Create the server configuration file at <code>\/etc\/wireguard\/wg0.conf<\/code>. This example sets up a remote access VPN with the VPS as the hub:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[Interface]\n# Server's internal VPN IP address (choose a \/24 subnet)\nAddress = 10.0.0.1\/24\n# Port WireGuard listens on (default: 51820)\nListenPort = 51820\n# Server's private key\nPrivateKey = &lt;SERVER_PRIVATE_KEY&gt;\n\n# Enable IP forwarding (required for clients to access the internet through the VPS)\n# Also set sysctl: net.ipv4.ip_forward = 1\n\n# Client 1: Laptop\n[Peer]\n# Client 1's public key\nPublicKey = &lt;CLIENT1_PUBLIC_KEY&gt;\n# Client 1's allowed IPs (the IP address assigned to this client)\nAllowedIPs = 10.0.0.2\/32\n\n# Client 2: Mobile phone\n[Peer]\nPublicKey = &lt;CLIENT2_PUBLIC_KEY&gt;\nAllowedIPs = 10.0.0.3\/32\n\n# Client 3: Remote server (site-to-site)\n[Peer]\nPublicKey = &lt;CLIENT3_PUBLIC_KEY&gt;\nAllowedIPs = 10.0.0.4\/32, 192.168.1.0\/24<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Enable IP forwarding on the server so clients can route traffic through the VPS:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"net.ipv4.ip_forward = 1\" | sudo tee \/etc\/sysctl.d\/99-wireguard-forwarding.conf\nsudo sysctl --system\n\n# Optional: NAT traffic from the VPN subnet to the internet\n# (if clients should use the VPS as their internet gateway)\nsudo iptables -t nat -A POSTROUTING -s 10.0.0.0\/24 -o eth0 -j MASQUERADE<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Start the WireGuard Interface<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code># Start the interface\nsudo wg-quick up wg0\n\n# Verify the interface is up\nsudo wg show\n\n# Enable the service to start on boot\nsudo systemctl enable wg-quick@wg0\n\n# You should see output like:\n# interface: wg0\n#   public key: &lt;SERVER_PUBLIC_KEY&gt;\n#   private key: (hidden)\n#   listening port: 51820\n#\n# peer: &lt;CLIENT1_PUBLIC_KEY&gt;\n#   endpoint: (none yet, waits for client to connect)\n#   allowed ips: 10.0.0.2\/32<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Client Configuration<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Linux Client<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Create <code>\/etc\/wireguard\/wg0.conf<\/code> on the client:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[Interface]\n# Client's internal VPN IP\nAddress = 10.0.0.2\/32\n# Client's private key\nPrivateKey = &lt;CLIENT1_PRIVATE_KEY&gt;\n# DNS server (optional, routes DNS through the VPN)\nDNS = 1.1.1.1\n\n[Peer]\n# Server's public key\nPublicKey = &lt;SERVER_PUBLIC_KEY&gt;\n# Server's public IP and WireGuard port\nEndpoint = YOUR_VPS_IP:51820\n# Allowed IPs: 0.0.0.0\/0 routes ALL traffic through the VPN (full tunnel)\n# 10.0.0.0\/24 routes only VPN subnet traffic (split tunnel)\nAllowedIPs = 0.0.0.0\/0, ::\/0\n# Send a keepalive every 25 seconds (useful behind NAT)\nPersistentKeepalive = 25<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Start the client:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo wg-quick up wg0\nsudo systemctl enable wg-quick@wg0<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">macOS and Windows Clients<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Use the official WireGuard GUI applications. Create a new tunnel with the same configuration as the Linux client above. The GUI allows importing the configuration from a file or pasting it directly. The <code>AllowedIPs<\/code> setting determines whether the tunnel is full-tunnel (all traffic through the VPS) or split-tunnel (only VPN subnet traffic).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Firewall Configuration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WireGuard uses UDP. Ensure your VPS firewall allows inbound UDP traffic on port 51820:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># If using ufw\nsudo ufw allow 51820\/udp\n\n# If using iptables directly\nsudo iptables -A INPUT -p udp --dport 51820 -j ACCEPT\n\n# If using nftables\nsudo nft add rule inet filter input udp dport 51820 accept<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Site-to-Site VPN: Connecting Two VPS Instances<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WireGuard is also excellent for connecting multiple VPS instances in a private mesh network. This is useful for database replication, service discovery, or distributed application backends that should not communicate over the public internet.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a site-to-site connection between VPS-A (10.0.0.1) and VPS-B (10.0.0.2):<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>VPS-A configuration (additional peer):<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[Peer]\n# VPS-B's public key\nPublicKey = &lt;VPS_B_PUBLIC_KEY&gt;\n# VPS-B's VPN IP and any subnets behind VPS-B\nAllowedIPs = 10.0.0.2\/32, 10.10.0.0\/16\n# VPS-B's public IP and WireGuard port\nEndpoint = VPS_B_PUBLIC_IP:51820\n# Both servers are always online, no keepalive needed\nPersistentKeepalive = 0<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>VPS-B configuration (additional peer):<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[Peer]\n# VPS-A's public key\nPublicKey = &lt;VPS_A_PUBLIC_KEY&gt;\n# VPS-A's VPN IP and any subnets behind VPS-A\nAllowedIPs = 10.0.0.1\/32, 10.20.0.0\/16\n# VPS-A's public IP and WireGuard port\nEndpoint = VPS_A_PUBLIC_IP:51820\nPersistentKeepalive = 0<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After both configurations are active, VPS-A and VPS-B can communicate over the VPN using their private IP addresses (10.0.0.1 and 10.0.0.2). Add routing rules on each VPS to direct traffic bound for the other&#8217;s subnet through the WireGuard interface.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance Tuning<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WireGuard adds minimal overhead. For maximum throughput:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>MTU tuning:<\/strong> The default WireGuard MTU is 1420 bytes (subtracting 80 bytes for the WireGuard header from the standard 1500 byte Ethernet MTU). If your VPS uses a different underlying MTU (e.g., 1450 for PPPoE, 1400 for some VPN providers), adjust with <code>MTU = 1320<\/code> in the <code>[Interface]<\/code> section.<\/li>\n<li><strong>Multi-queue support:<\/strong> WireGuard supports multiple encryption threads on multi-core systems. Increase the number of worker queues with <code>wg set wg0 fwmark 0xca6c<\/code> if you need to saturate a 10 Gbps link.<\/li>\n<li><strong>Kernel module vs. userspace:<\/strong> The kernel module (built into Linux 5.6+) is significantly faster than userspace implementations. On older kernels, install the module via DKMS.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Security Hardening<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Restrict SSH to the VPN subnet:<\/strong> After WireGuard is working, modify your SSH server configuration to only listen on the VPN IP address (<code>ListenAddress 10.0.0.1<\/code> in <code>\/etc\/ssh\/sshd_config<\/code>). This means SSH is only accessible when connected to the VPN.<\/li>\n<li><strong>Use a non-standard WireGuard port:<\/strong> Changing the <code>ListenPort<\/code> from 51820 to a random high port reduces automated scanning.<\/li>\n<li><strong>Rotate keys periodically:<\/strong> Generate new key pairs and update configurations monthly for high-security environments.<\/li>\n<li><strong>Audit peer connections:<\/strong> Regularly run <code>sudo wg show<\/code> to verify only expected peers are connected.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>No handshake:<\/strong> Verify the firewall allows UDP on port 51820. Check that the server&#8217;s public key matches the client&#8217;s Peer configuration. Confirm the client&#8217;s public key is in the server&#8217;s configuration.<\/li>\n<li><strong>Can ping VPN IP but not the internet:<\/strong> Check that IP forwarding is enabled on the server and that the NAT masquerade rule is in place.<\/li>\n<li><strong>DNS leaks:<\/strong> If using a split tunnel, ensure DNS queries are routed through the VPN by setting the <code>DNS<\/code> field in the client configuration.<\/li>\n<li><strong>Slow throughput:<\/strong> Check MTU settings. Run <code>ping -M do -s 1420 YOUR_VPS_IP<\/code> to find the maximum MTU without fragmentation.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">WireGuard transforms a VPS from a public-facing server into a private network hub. When selecting a VPS provider for your VPN and application servers, <a href=\"https:\/\/virtualserversvps.com\/#providers\">compare VPS providers on our comparison table<\/a> to find instances with sufficient network throughput and the ability to add additional public IP addresses if needed. A $5\/month VPS is more than sufficient for a WireGuard VPN serving 10\u201320 clients with full-tunnel throughput up to 200 Mbps.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WireGuard is a modern VPN protocol that uses state-of-the-art cryptography and fits in under 4,000 lines of kernel code. Unlike OpenVPN or IPsec, WireGuard is designed for simplicity: a single&#8230;<\/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":[4],"tags":[],"class_list":["post-963","post","type-post","status-publish","format-standard","hentry","category-security-compliance"],"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>Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening - Virtual Servers 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:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening\" \/>\n<meta property=\"og:description\" content=\"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-24T23:18:35+00:00\" \/>\n<meta name=\"author\" content=\"Virtual-Servers-Vps-Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virtual-Servers-Vps-Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/\",\"name\":\"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"datePublished\":\"2026-08-24T23:18:35+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/\",\"name\":\"Virtual Servers VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\",\"name\":\"Virtual-Servers-Vps-Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"caption\":\"Virtual-Servers-Vps-Editor\"},\"sameAs\":[\"https:\/\/virtualserversvps.com\/blog\"],\"url\":\"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening - Virtual Servers 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:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/","og_locale":"en_US","og_type":"article","og_title":"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening","og_description":"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening","og_url":"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2026-08-24T23:18:35+00:00","author":"Virtual-Servers-Vps-Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Virtual-Servers-Vps-Editor","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/","url":"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/","name":"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"datePublished":"2026-08-24T23:18:35+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/wireguard-vpn-vps-setup-security-hardening\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Setting Up WireGuard VPN on a VPS: Remote Access, Site-to-Site Networking, and Security Hardening"}]},{"@type":"WebSite","@id":"https:\/\/virtualserversvps.com\/blog\/#website","url":"https:\/\/virtualserversvps.com\/blog\/","name":"Virtual Servers VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0","name":"Virtual-Servers-Vps-Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","caption":"Virtual-Servers-Vps-Editor"},"sameAs":["https:\/\/virtualserversvps.com\/blog"],"url":"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/"}]}},"_links":{"self":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/963","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/comments?post=963"}],"version-history":[{"count":1,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/963\/revisions"}],"predecessor-version":[{"id":964,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/963\/revisions\/964"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=963"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=963"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=963"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}