{"id":16629,"date":"2017-06-13T11:30:01","date_gmt":"2017-06-13T11:30:01","guid":{"rendered":"https:\/\/www.heartinternet.uk\/blog\/?p=16629"},"modified":"2017-06-13T11:30:01","modified_gmt":"2017-06-13T11:30:01","slug":"three-timely-ssh-tricks","status":"publish","type":"post","link":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/","title":{"rendered":"Three Timely SSH Tricks"},"content":{"rendered":"<p>The ability to SSH into your server is one of the most versatile tools in your sysadmin toolbox.  It&#8217;s more than just a simple way to connect remotely to your server, it can be used to securely copy files, make automation easier, and add even more security to your server.<\/p>\n<p>So open up your SSH client of choice, log into your server, and discover more with these tricks!<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-1.jpg\" alt=\"\" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16630\" \/><\/p>\n<h3>Configure a more secure SSH<\/h3>\n<p>Although it has &#8220;Secure&#8221; in the name, and it&#8217;s secure in your default installation, you can make some tweaks to your SSH to provide an even more secure environment.<\/p>\n<p>You can find the parameters to change in <code>\/etc\/ssh\/sshd_config<\/code><\/p>\n<p>You can deny root user logins by finding the line:<\/p>\n<p><code>PermitRootLogin Yes<\/code><\/p>\n<p>Change the <code>Yes<\/code> to <code>No<\/code>.<\/p>\n<p>If you have less than ten users, you can also use <code>AllowUsers<\/code> to limit which users can connect to your server using SSH.  The user list is space delimited, and don&#8217;t forget to include yourself!<\/p>\n<p><code>AllowUsers erica neville joseph sanjit<\/code><\/p>\n<p>If you have more than ten, or if you&#8217;re managing your users by group, use <code>AllowGroups<\/code> and create separate groups for users.<\/p>\n<p>To set up the groups first:<\/p>\n<p><code>sudo groupadd -r sshadmin<br \/>\nsudo usermod -a -G sshadmin erica<\/code><\/p>\n<p>Then in <code>sshd_config<\/code>, find <code>AllowGroups<\/code> and change it to:<\/p>\n<p><code>AllowGroups sshusers<\/code><\/p>\n<p>Restart the SSH daemon with:<\/p>\n<p><code>sudo service ssh restart<\/code><\/p>\n<p>Or if you use systemd, use:<\/p>\n<p><code>sudo systemctl restart sshd<\/code><\/p>\n<p>or<\/p>\n<p><code>sudo systemctl restart ssh<\/code><\/p>\n<p>Another option is only allow SSH sessions to originate from a single server &#8211; often known as the Jump server.  This is great if you know that your IP address won&#8217;t change.<\/p>\n<p>You can limit the allowed IP addresses through IPTables using:<\/p>\n<p><code>sudo iptables -A INPUT -p tcp -s [IPADDRESS] -dport 22 - j ACCEPT<\/code><\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-3.jpg\" alt=\"\" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16633\" \/><\/p>\n<h3>Copying files to and from your remote computer<\/h3>\n<p>SSH protocol also includes SCP (Secure Copy) and SFTP (Secure FTP), letting you securely move files between your computer and your server as needed.<\/p>\n<p>You can easily copy files over if you know the specific path on the remote server:<\/p>\n<p><code>scp index.html neville@serverfarm:\/opt\/test\/index.html<br \/>\nneville@serverfarm's password: ******************<br \/>\nindex.html&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;100%&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;0.0KB\/s&nbsp;&nbsp;&nbsp;00:00<\/code><\/p>\n<p>You can also copy files from the remote server to your system by changing the syntax:<\/p>\n<p><code>scp neville@serverfarm:\/opt\/text\/index.html .<\/code><\/p>\n<p>The trailing full stop (.) tells SCP to copy to the current directory on the local system.<\/p>\n<p>SFTP works like FTP, just at the command line.  You can transfer one file or many by using wildcards to either get or put files.<\/p>\n<p>To initiate an SFTP session:<\/p>\n<p><code>sftp sanjit@serverfarm<\/code><\/p>\n<p>Then enter the user&#8217;s password.<\/p>\n<p>To put files onto the server:<\/p>\n<p><code>sftp&gt; put index.html<br \/>\nsftp&gt; put index.html shop.html opening-hours.html<br \/>\nsftp&gt; mput *.html<\/code><\/p>\n<p>To get files from the server:<\/p>\n<p><code>sftp&gt; get index.html<br \/>\nsftp&gt; get index.html shop.html opening-hours.html<br \/>\nsftp&gt; mget *.html<\/code><\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-4.jpg\" alt=\"\" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16634\" \/><\/p>\n<h3>Set up a passwordless SSH connection for automated scripting<\/h3>\n<p>It&#8217;s often convenient to connect from one server to another, especially for automated tasks, but you could run the risk of your scripts containing passwords, which is a major security risk.<\/p>\n<p>You can set up shared keys, which are also a security risk, but since you can control which systems the users can connect to, you can add an extra layer of security.<\/p>\n<p>Use SSH to connect to every host you want to configure passwordless SSH in.  Then SSH back to the original host from each system to accept the host fingerprint and establish a local .ssh directory in the user&#8217;s home directory on the remote system<\/p>\n<p><code>ssh-keygen -t rsa<br \/>\ncat. ssh\/id_rsa.pub &gt;&gt; .ssh\/authorized_keys<br \/>\ncat .ssh\/authorized_keys | ssh serverfarm 'cat &gt;&gt; .ssh\/authorized_keys'<\/code><\/p>\n<p>Enter the password for the remote host<\/p>\n<p>Type <code>exit<\/code> to return to the original host<\/p>\n<p>SSH into the remote host &#8211; no password is required!<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-2.jpg\" alt=\"\" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16632\" \/><\/p>\n<p>SSH is a remarkable tool for managing your server.  Learning how to use SSH, whether you read books or use online articles, helps to make you a very powerful administrator.<\/p>\n<p>What are some SSH tricks you use on your servers?<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Using SSH is one of the most versatile tools in your sysadmin toolbox.  We have three tricks to get even more out of your SSH!<\/p>\n","protected":false},"author":2,"featured_media":16636,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6,23],"tags":[],"class_list":{"0":"post-16629","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-dedicated-servers","8":"category-vps"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Three Timely SSH Tricks - Heart Internet<\/title>\n<meta name=\"description\" content=\"Using SSH is one of the most versatile tools in your sysadmin toolbox. We have three tricks to get even more out of your SSH!\" \/>\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\/three-timely-ssh-tricks\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Three Timely SSH Tricks - Heart Internet\" \/>\n<meta property=\"og:description\" content=\"Using SSH is one of the most versatile tools in your sysadmin toolbox. We have three tricks to get even more out of your SSH!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/\" \/>\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=\"2017-06-13T11:30:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1265\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/\"},\"author\":{\"name\":\"Eliot Chambers-Ostler\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\"},\"headline\":\"Three Timely SSH Tricks\",\"datePublished\":\"2017-06-13T11:30:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/\"},\"wordCount\":556,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg\",\"articleSection\":[\"Dedicated Servers\",\"VPS\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/\",\"name\":\"Three Timely SSH Tricks - Heart Internet\",\"isPartOf\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg\",\"datePublished\":\"2017-06-13T11:30:01+00:00\",\"description\":\"Using SSH is one of the most versatile tools in your sysadmin toolbox. We have three tricks to get even more out of your SSH!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg\",\"width\":1265,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.heartinternet.uk\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Three Timely SSH Tricks\"}]},{\"@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":"Three Timely SSH Tricks - Heart Internet","description":"Using SSH is one of the most versatile tools in your sysadmin toolbox. We have three tricks to get even more out of your SSH!","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\/three-timely-ssh-tricks\/","og_locale":"en_GB","og_type":"article","og_title":"Three Timely SSH Tricks - Heart Internet","og_description":"Using SSH is one of the most versatile tools in your sysadmin toolbox. We have three tricks to get even more out of your SSH!","og_url":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/","og_site_name":"Heart Internet","article_publisher":"https:\/\/www.facebook.com\/heartinternet\/","article_published_time":"2017-06-13T11:30:01+00:00","og_image":[{"width":1265,"height":500,"url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#article","isPartOf":{"@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/"},"author":{"name":"Eliot Chambers-Ostler","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28"},"headline":"Three Timely SSH Tricks","datePublished":"2017-06-13T11:30:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/"},"wordCount":556,"commentCount":0,"publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg","articleSection":["Dedicated Servers","VPS"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/","url":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/","name":"Three Timely SSH Tricks - Heart Internet","isPartOf":{"@id":"https:\/\/heartblog.victory.digital\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg","datePublished":"2017-06-13T11:30:01+00:00","description":"Using SSH is one of the most versatile tools in your sysadmin toolbox. We have three tricks to get even more out of your SSH!","breadcrumb":{"@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#primaryimage","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/06\/sshtricks-background.jpg","width":1265,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/www.heartinternet.uk\/blog\/three-timely-ssh-tricks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.heartinternet.uk\/blog\/"},{"@type":"ListItem","position":2,"name":"Three Timely SSH Tricks"}]},{"@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\/16629","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=16629"}],"version-history":[{"count":0,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/16629\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media\/16636"}],"wp:attachment":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media?parent=16629"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/categories?post=16629"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/tags?post=16629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}