{"id":11346,"date":"2016-03-07T14:09:08","date_gmt":"2016-03-07T14:09:08","guid":{"rendered":"https:\/\/www.heartinternet.uk\/blog\/?p=11346"},"modified":"2016-03-07T14:09:08","modified_gmt":"2016-03-07T14:09:08","slug":"tips-protecting-server","status":"publish","type":"post","link":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/","title":{"rendered":"Tips on protecting your server"},"content":{"rendered":"<p>When you purchase a <a href=\"\/vps\">VPS<\/a> or <a href=\"\/dedicated-servers\">Dedicated Server<\/a>, you need to protect it. Bots trawl the Internet looking for any possible vulnerability, and an open VPS or Dedicated Server is a potential goldmine.<\/p>\n<p>But, thankfully, locking down your server is fairly easy \u2013 whether it&#8217;s on Linux or Windows.  Just follow these few tips, and you&#8217;ll have a server that&#8217;s well on its way to being safe.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/protectingserver-lockingport.jpg\" alt=\" \" width=\"600\" height=\"200\" class=\"aligncenter size-full wp-image-11351\" \/><\/p>\n<h3>Change the login port<\/h3>\n<p>For Linux machines, the default SSH port is 22.  And since it is a default, it&#8217;s vulnerable to brute force attacks.  But you can easily switch over your port, making it much more difficult for others to log in.<\/p>\n<p>You can change it to any number you want, but you should check that it isn&#8217;t a port used by another program.  You can see <a href=\"https:\/\/en.wikipedia.org\/wiki\/List_of_TCP_and_UDP_port_numbers\">the full list of TCP and UDP ports on Wikipedia<\/a>.<\/p>\n<p>To switch your port:<\/p>\n<ol>\n<li>SSH into your server with your root login<\/li>\n<li>Open <code>\/etc\/ssh\/sshd_config<\/code> in the text editor of your choice<\/li>\n<li>Find the line <code># Port 22<\/code><\/li>\n<li>Remove the <code>#<\/code> next to <code>Port 22<\/code><\/li>\n<li>Replace <code>22<\/code> with another number<\/li>\n<li>Save and exit the config file<\/li>\n<li>Restart the SSH service by entering <code>\/etc\/init.d\/ssh restart<\/code><\/li>\n<li>Log in again using the new port<\/li>\n<\/ol>\n<p>On Windows, you can change the RDP port, making it more difficult for other people to Remote Desktop into your computer.<\/p>\n<p>To switch your port:<\/p>\n<ol>\n<li>Remote Desktop into your server<\/li>\n<li>Click the Windows logo and R to open the Run dialog<\/li>\n<li>Enter in <code>cmd<\/code><\/li>\n<li>Enter in <code>regedit<\/code><\/li>\n<li>Look for <code>HKEY_LOCAL_MACHINESystemCurrentControlSetControlTerminalServerWinStationsRDP-TcpPortNumber<\/code><\/li>\n<li>Double-click or right-click on the <code>PortNumber<\/code> registry subkey<\/li>\n<li>Select the decimal base<\/li>\n<li>Enter in the port number of your choice<\/li>\n<li>Click OK<\/li>\n<\/ol>\n<p>You will need to make certain that your new port is authorised within your Windows firewall before you restart your server.<\/p>\n<ol>\n<li>Go to the command prompt<\/li>\n<li>Enter in <code>netsh advfirewall firewall add rule name=\"Open new RDP Port\" dir=in action=allow protocol=TCP localport=[New Port]<\/code><\/li>\n<\/ol>\n<p>Once it has been added, you can exit the registry editor and restart your server.  Make certain that you add the new port to your RDP client when you log in.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/protectingserver-login.jpg\" alt=\" \" width=\"600\" height=\"200\" class=\"aligncenter size-full wp-image-11352\" \/><\/p>\n<h3>Create a new root or administrative login<\/h3>\n<p>When you first set up your server, you&#8217;ll have either your root login (if you&#8217;re on Linux) or an Administrator login (if you&#8217;re on Windows).  These have all the power, but because they&#8217;re also the default, they&#8217;re low-hanging fruit for hackers.<\/p>\n<p>But you can give another user all the power.<\/p>\n<p>To set up your new user and disable your root user in Linux:<\/p>\n<ol>\n<li>SSH into your server with your root login<\/li>\n<li>Enter <code>useradd [username] wheel<\/code> (creating a new user account)<\/li>\n<li>Enter <code>Passwd [username]<\/code> (using the same user)<\/li>\n<li>Enter in the new password<\/li>\n<li>Open <code>\/etc\/sudoers<\/code> in the text editor of your choice<\/li>\n<li>Find the line <code># %wheel ALL=(ALL) ALL<\/code><\/li>\n<li>Remove the <code>#<\/code> next to <code>%wheel<\/code><\/li>\n<li>Save and exit<\/li>\n<li>Open <code>\/etc\/ssh\/sshd_config<\/code> in the text editor of your choice<\/li>\n<li>At the bottom, add <code>AllowUsers [username]<\/code><\/li>\n<li>Save and exit the config file<\/li>\n<li>Log out and log back in using your new user account<\/li>\n<li>Open <code>\/etc\/ssh\/sshd_config<\/code> in the text editor of your choice again<\/li>\n<li>Find the line <code># PermitRootLogin yes<\/code><\/li>\n<li>Remove the <code>#<\/code> next to <code>PermitRootLogin<\/code><\/li>\n<li>Change <code>yes<\/code> to <code>no<\/code><\/li>\n<li>Save and exit the config file<\/li>\n<li>Restart the SSH service by entering <code>\/etc\/init.d\/ssh restart<\/code><\/li>\n<li>Log in again using your new user account<\/li>\n<\/ol>\n<p>To set up your new user and disable your Administrator user in Windows:<\/p>\n<ol>\n<li>Log into your server with your Administrator login<\/li>\n<li>Click Start<\/li>\n<li>Click Computer Management<\/li>\n<li>Click Local Users and Computers<\/li>\n<li>Click the Users folder<\/li>\n<li>Right Click and select New User<\/li>\n<li>Enter the new User&#8217;s name and password<\/li>\n<li>Untick  User must change password at next logon<\/li>\n<li>Click Create<\/li>\n<li>Disable the current administrator account by double clicking on the Administrator user and ticking Account is disabled<\/li>\n<li>Click the Groups folder<\/li>\n<li>Right Click Administrators and Select Add To Group<\/li>\n<li>Add the new user you have just created<\/li>\n<li>Log out and log back in using your new user account<\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/protectingserver-blocking.jpg\" alt=\" \" width=\"600\" height=\"200\" class=\"aligncenter size-full wp-image-11349\" \/><\/p>\n<h3>Block suspicious IP addresses<\/h3>\n<p>Once you&#8217;ve changed the port and root account, you can protect your server even more by setting up protection against unauthorised access.<\/p>\n<p>On Linux systems, fail2ban is a good piece of security software that can help you.<\/p>\n<p>To set up fail2ban:<\/p>\n<ol>\n<li>Log into your server<\/li>\n<li>Use <code>apt-get<\/code> or <code>yum<\/code> to install fail2ban<\/li>\n<li>Create local version of the fail2ban configuration file by entering <code>cp \/etc\/fail2ban\/jail.conf \/etc\/fail2ban\/jail.local<\/code><\/li>\n<li>Open <code>\/etc\/fail2ban\/jail.local<\/code> in the text editor of your choice<\/li>\n<li>Define how long you want suspicious IP addresses to be blocked under <code>bantime<\/code>. The value is specified in seconds, so, for example, a 10 minute ban would be 600<\/li>\n<li>Define how many incorrect login attempts can happen before the IP address is blocked under <code>maxretry<\/code><\/li>\n<li>Under SSH, find the <code>port = ssh<\/code> field and switch it to the new port number you specified above<\/li>\n<li>Restart fail2ban by entering <code>\/etc\/init.d\/fail2ban restart<\/code><\/li>\n<\/ol>\n<p>You can then review the log of blocked IP addresses by going to <code>var\/log\/fail2ban<\/code><\/p>\n<p>On your Windows server, you can add <a href=\"https:\/\/www.iis.net\/downloads\/microsoft\/dynamic-ip-restrictions\">the IIS module Dynamic IP Restrictions<\/a>, which helps protect your server against DDOS attacks as well as brute force attacks.  With Dynamic IP Restrictions, you can define how many requests can be made from an IP address, both in a set amount of time and at the same time.<\/p>\n<p>You can install Dynamic IP Restrictions by downloading it from Microsoft&#8217;s IIS download page, or use the Web Platform Installer on your server.<\/p>\n<p>To configure Dynamic IP Restrictions:<\/p>\n<ol>\n<li>Log into your server<\/li>\n<li>Open your IIS Manager<\/li>\n<li>Select the server node if you want to configure server-wide settings, or select a site node to configure site-specific settings<\/li>\n<li>Click Dynamic IP Restrictions<\/li>\n<li>You can deny IP addresses by the maximum number of concurrent requests and also by the number of requests over a period of time<\/li>\n<li>You can also add allowed IP addresses by clicking Show Allowed Addresses under the Actions column<\/li>\n<\/ol>\n<p>With these three simple processes, you can make sure your server is protected. What other tips do you have for protecting your server?<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you purchase a VPS or Dedicated Server, you need to protect it. But, thankfully, locking down your server is fairly easy \u2013 whether it&#8217;s on Linux or Windows.  Here are a few tips for making a server that&#8217;s well on its way to being safe.<\/p>\n","protected":false},"author":2,"featured_media":11148,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6,14,23],"tags":[],"class_list":{"0":"post-11346","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-dedicated-servers","8":"category-hybrid-servers","9":"category-vps"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Tips on protecting your server - Heart Internet<\/title>\n<meta name=\"description\" content=\"Three tips to get started protecting your Windows or Linux server.\" \/>\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.heartinternet.uk\/blog\/tips-protecting-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tips on protecting your server - Heart Internet\" \/>\n<meta property=\"og:description\" content=\"Three tips to get started protecting your Windows or Linux server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Heart Internet\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/heartinternet\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-03-07T14:09:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1680\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Eliot Chambers-Ostler\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@heartinternet\" \/>\n<meta name=\"twitter:site\" content=\"@heartinternet\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Eliot Chambers-Ostler\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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\":\"Article\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/\"},\"author\":{\"name\":\"Eliot Chambers-Ostler\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\"},\"headline\":\"Tips on protecting your server\",\"datePublished\":\"2016-03-07T14:09:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/\"},\"wordCount\":940,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg\",\"articleSection\":[\"Dedicated Servers\",\"Hybrid Servers\",\"VPS\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/\",\"name\":\"Tips on protecting your server - Heart Internet\",\"isPartOf\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg\",\"datePublished\":\"2016-03-07T14:09:08+00:00\",\"description\":\"Three tips to get started protecting your Windows or Linux server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg\",\"width\":1680,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.heartinternet.uk\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tips on protecting your server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/heartblog.victory.digital\/#website\",\"url\":\"https:\/\/heartblog.victory.digital\/\",\"name\":\"Heart Internet\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/heartblog.victory.digital\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\",\"name\":\"Heart Internet\",\"url\":\"https:\/\/heartblog.victory.digital\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp\",\"width\":992,\"height\":252,\"caption\":\"Heart Internet\"},\"image\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/heartinternet\/\",\"https:\/\/x.com\/heartinternet\",\"https:\/\/www.linkedin.com\/company\/heart-internet-ltd\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\",\"name\":\"Eliot Chambers-Ostler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg\",\"caption\":\"Eliot Chambers-Ostler\"},\"url\":\"https:\/\/www.heartinternet.uk\/blog\/author\/eliot-chambers-ostler\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tips on protecting your server - Heart Internet","description":"Three tips to get started protecting your Windows or Linux 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.heartinternet.uk\/blog\/tips-protecting-server\/","og_locale":"en_GB","og_type":"article","og_title":"Tips on protecting your server - Heart Internet","og_description":"Three tips to get started protecting your Windows or Linux server.","og_url":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/","og_site_name":"Heart Internet","article_publisher":"https:\/\/www.facebook.com\/heartinternet\/","article_published_time":"2016-03-07T14:09:08+00:00","og_image":[{"width":1680,"height":720,"url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg","type":"image\/jpeg"}],"author":"Eliot Chambers-Ostler","twitter_card":"summary_large_image","twitter_creator":"@heartinternet","twitter_site":"@heartinternet","twitter_misc":{"Written by":"Eliot Chambers-Ostler","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#article","isPartOf":{"@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/"},"author":{"name":"Eliot Chambers-Ostler","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28"},"headline":"Tips on protecting your server","datePublished":"2016-03-07T14:09:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/"},"wordCount":940,"commentCount":0,"publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg","articleSection":["Dedicated Servers","Hybrid Servers","VPS"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/","url":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/","name":"Tips on protecting your server - Heart Internet","isPartOf":{"@id":"https:\/\/heartblog.victory.digital\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg","datePublished":"2016-03-07T14:09:08+00:00","description":"Three tips to get started protecting your Windows or Linux server.","breadcrumb":{"@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#primaryimage","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2016\/03\/protectingserver-background.jpg","width":1680,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.heartinternet.uk\/blog\/tips-protecting-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.heartinternet.uk\/blog\/"},{"@type":"ListItem","position":2,"name":"Tips on protecting your server"}]},{"@type":"WebSite","@id":"https:\/\/heartblog.victory.digital\/#website","url":"https:\/\/heartblog.victory.digital\/","name":"Heart Internet","description":"","publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/heartblog.victory.digital\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/heartblog.victory.digital\/#organization","name":"Heart Internet","url":"https:\/\/heartblog.victory.digital\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp","width":992,"height":252,"caption":"Heart Internet"},"image":{"@id":"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/heartinternet\/","https:\/\/x.com\/heartinternet","https:\/\/www.linkedin.com\/company\/heart-internet-ltd"]},{"@type":"Person","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28","name":"Eliot Chambers-Ostler","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/image\/","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg","caption":"Eliot Chambers-Ostler"},"url":"https:\/\/www.heartinternet.uk\/blog\/author\/eliot-chambers-ostler\/"}]}},"_links":{"self":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/11346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/comments?post=11346"}],"version-history":[{"count":0,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/11346\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media\/11148"}],"wp:attachment":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media?parent=11346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/categories?post=11346"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/tags?post=11346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}