{"id":16538,"date":"2025-04-07T07:17:42","date_gmt":"2025-04-07T06:17:42","guid":{"rendered":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?p=16538"},"modified":"2025-04-07T07:18:33","modified_gmt":"2025-04-07T06:18:33","slug":"how-to-change-the-ssh-port","status":"publish","type":"post","link":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/","title":{"rendered":"How to Change the SSH Port?"},"content":{"rendered":"\n<p>SSH (Secure Shell) is a crucial element to secure remote server management. It enables you to connect and control your <a href=\"https:\/\/www.milesweb.co.uk\/hosting\/vps-hosting\/linux-vps-hosting\">Linux VPS<\/a> using encrypted communication. Such encryption secures sensitive data, keeping it out of the reach of cybercriminals.\u00a0<\/p>\n\n\n\n<p>However, since SSH operates on the default port 22, it often becomes a prime target for brute-force attacks. The simplest way to boost your website security is to change the default port, making it hardware for automated threats to find and exploit your server.&nbsp;<\/p>\n\n\n\n<p>In this tutorial, we&#8217;ll walk you through changing your SSH port step by step\u2014helping you choose a secure new port without interrupting access to your server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Choosing an SSH Port Number<\/h2>\n\n\n\n<p>It should be chosen from an unused port to avoid potential conflicts and reduce security threats on your VPS. Some of the most used port numbers and protocols along with their respective services are listed below:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-background\" style=\"background-color:#d9ecff\"><tbody><tr><td><strong>Port Number<\/strong><\/td><td><strong>Service<\/strong><\/td><td><strong>Protocol<\/strong><\/td><\/tr><tr><td><strong>20<\/strong><\/td><td>FTP (data transfer)<\/td><td>TCP<\/td><\/tr><tr><td><strong>21<\/strong><\/td><td>FTP (control)<\/td><td>TCP<\/td><\/tr><tr><td><strong>22<\/strong><\/td><td>SSH<\/td><td>TCP<\/td><\/tr><tr><td><strong>23<\/strong><\/td><td>Telnet<\/td><td>TCP<\/td><\/tr><tr><td><strong>25<\/strong><\/td><td>SMTP<\/td><td>TCP<\/td><\/tr><tr><td><strong>53<\/strong><\/td><td>DNS<\/td><td>TCP\/UDP<\/td><\/tr><tr><td><strong>67\/68<\/strong><\/td><td>DHCP<\/td><td>UDP<\/td><\/tr><tr><td><strong>69<\/strong><\/td><td>TFTP<\/td><td>UDP<\/td><\/tr><tr><td><strong>80<\/strong><\/td><td>HTTP<\/td><td>TCP<\/td><\/tr><tr><td><strong>110<\/strong><\/td><td>POP3<\/td><td>TCP<\/td><\/tr><tr><td><strong>123<\/strong><\/td><td>NTP<\/td><td>UDP<\/td><\/tr><tr><td><strong>137\/138\/139<\/strong><\/td><td>NetBIOS<\/td><td>TCP\/UDP<\/td><\/tr><tr><td><strong>143<\/strong><\/td><td>IMAP<\/td><td>TCP<\/td><\/tr><tr><td><strong>161\/162<\/strong><\/td><td>SNMP<\/td><td>TCP\/UDP<\/td><\/tr><tr><td><strong>179<\/strong><\/td><td>BGP<\/td><td>TCP<\/td><\/tr><tr><td><strong>389<\/strong><\/td><td>LDAP<\/td><td>TCP\/UDP<\/td><\/tr><tr><td><strong>443<\/strong><\/td><td>HTTPS<\/td><td>TCP<\/td><\/tr><tr><td><strong>636<\/strong><\/td><td>LDAPS<\/td><td>TCP\/UDP<\/td><\/tr><tr><td><strong>989\/990<\/strong><\/td><td>FTPS<\/td><td>TCP<\/td><\/tr><tr><td><strong>3306<\/strong><\/td><td>MySQL<\/td><td>TCP<\/td><\/tr><tr><td><strong>8080<\/strong><\/td><td>Alternative to HTTP (web)<\/td><td>TCP<\/td><\/tr><tr><td><strong>8443<\/strong><\/td><td>Alternative to HTTPS (web)<\/td><td>TCP<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Also, select a port that is not in the standard well-known range (0-1023) and the registered ports range (1024-49151). It is advisable to use a non-standard port from the dynamic or private ports range (49152-65535).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Change the Default SSH Port?<\/h2>\n\n\n\n<p>As you have chosen the new port, let\u2019s understand the different steps to implement the change.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Access your server via SSH<\/h3>\n\n\n\n<p>Access the server securely before you make any changes. Follow these steps to connect SSH through your server.&nbsp;<\/p>\n\n\n\n<p>For Windows, macOS, or Linux, start by opening a new terminal window. On Windows, you may need an SSH client like PuTTY.<\/p>\n\n\n\n<p>Use this command to login to your server. Replace the username with your real server username and server_ip with your server IP address:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh username@server_ip<\/code><\/pre>\n\n\n\n<p>Enter the login credentials you provided. For enhanced security, it is recommended to use SSH keys instead of passwords.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Edit the SSH configuration file<\/h3>\n\n\n\n<p>After you successfully access your server, the next step is to modify the SSH configuration to use a new port. It involves editing the sshd_config file, that controls several parameters of your SSH daemon.&nbsp;<\/p>\n\n\n\n<p>Use the following command to open the SSH daemon configuration file in the nano text editor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/ssh\/sshd_config<\/code><\/pre>\n\n\n\n<p>Scroll down until you find the line that includes #Port 22. This line is commented out by default, and the number 22 represents the default port.<\/p>\n\n\n\n<p>Remove the # to uncomment this line and change 22 to your desired port number, such as 61189.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"619\" src=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png\" alt=\"omment this line and change\" class=\"wp-image-16539\"\/><\/figure>\n\n\n\n<p>Adjust Firewall Settings<\/p>\n\n\n\n<p>You need to adjust the firewall settings to allow traffic on the new server after updating the SSH port. However, if you have never configured any of them, skip this process and proceed.&nbsp;<\/p>\n\n\n\n<p>This is how to update firewall rules by using Uncomplicated Firewall (UFW):<\/p>\n\n\n\n<p>Run the following command to open up incoming connections on your new port using TCP. Make sure to replace 61189 with the port you are going to use:Lastly, restart UFW for changes to take effect:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 61189\/tcp<\/code><\/pre>\n\n\n\n<p>Reload UFW to apply the changes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw reload<\/code><\/pre>\n\n\n\n<p>Using either method, verify the current UFW status by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw status<\/code><\/pre>\n\n\n\n<p>If you are installed any other firewall on the server you need to allow the port in the&nbsp; firewall.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Restart the SSH service<\/h3>\n\n\n\n<p>After you have modified the SSH configurations and the firewall settings, the next step is to restart the SSH service so that the new alterations can take place.<\/p>\n\n\n\n<p>For systemd based systems, which are used by default in newer distributions such as Ubuntu, Debian and CentOS, restart the SSH service using the following command in the terminal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart sshd<\/code><\/pre>\n\n\n\n<p>You can use this command for older systems that use SysVinit.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo service ssh restart<\/code><\/pre>\n\n\n\n<p>After the restart, check the SSH service status to see if everything is working.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status sshd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Verify the New Port<\/h3>\n\n\n\n<p>Since you have restarted the SSH service, the next thing to do is check that SSH is running on the new port. You must verify that our changes were successful and that you can access the server.&nbsp;<\/p>\n\n\n\n<p>You can use either ss or netstat to check an SSH portIf you have ss, here is the command you can execute to check all of your active connections, along with filtering for your new SSH port:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ss -tuln | grep &#91;new_port_number]<\/code><\/pre>\n\n\n\n<p>The output may look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"884\" height=\"90\" src=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-ss.png\" alt=\"terminal-ss\" class=\"wp-image-16541\"\/><\/figure>\n\n\n\n<p>In case you don&#8217;t like to use the ss command, you can always just check with the netstat command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -tuln | grep &#91;new_port_number]<\/code><\/pre>\n\n\n\n<p>And the output will look similar to:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"89\" src=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-netstat.png\" alt=\"terminal-netstat\" class=\"wp-image-16543\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Log in using the new port<\/h3>\n\n\n\n<p>To test connecting to the server with the new SSH port number, open a new terminal window and execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh -p new_port_number username@server_ip<\/code><\/pre>\n\n\n\n<p>Please replace new_port_number, username, and server_ip with your specific information.<\/p>\n\n\n\n<p>The new port must be used for SSH connections to confirm that your server is functioning correctly.<\/p>\n\n\n\n<div class=\"vlt-box \">\n<div class=\"box-title\" style=\"background:#D5EAFF; color:#000\">The Bottom Line<\/div>\n<div class=\"box-content\" >\n<p>By changing the default SSH port, you can reduce your server&#8217;s vulnerability to attacks.<\/p>\n<p>In addition to using firewalls, updating server packages regularly, and setting up multi-factor authentication, you can make your SSH server more secure by implementing this change.<\/p>\n<p>It is important to remember that security is an ongoing process that benefits from regular attention and adaptation.<\/p>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>SSH (Secure Shell) is a crucial element to secure remote server management. It enables you to connect and control your Linux VPS using encrypted communication. Such encryption secures sensitive data, keeping it out of the reach of cybercriminals.\u00a0 However, since SSH operates on the default port 22, it often becomes a prime target for brute-force [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[41],"tags":[],"class_list":["post-16538","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-howtos"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Change the SSH Port?<\/title>\n<meta name=\"description\" content=\"Need to change the SSH port on your server? This tutorial provides a clear and easy guide for users to update their SSH port for improved security.\" \/>\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.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Change the SSH Port?\" \/>\n<meta property=\"og:description\" content=\"Need to change the SSH port on your server? This tutorial provides a clear and easy guide for users to update their SSH port for improved security.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-07T06:17:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-07T06:18:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"619\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ujwala\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ujwala\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/\",\"name\":\"How to Change the SSH Port?\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png\",\"datePublished\":\"2025-04-07T06:17:42+00:00\",\"dateModified\":\"2025-04-07T06:18:33+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\"},\"description\":\"Need to change the SSH port on your server? This tutorial provides a clear and easy guide for users to update their SSH port for improved security.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png\",\"contentUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png\",\"width\":1024,\"height\":619,\"caption\":\"omment this line and change\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Change the SSH Port?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\",\"name\":\"Ujwala\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g\",\"caption\":\"Ujwala\"},\"description\":\"My aim is to create enriching content on topics related to SEO, web hosting and social media. The idea is to elevate the readers to new levels of usability, accessibility and understanding.\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/ujwala\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Change the SSH Port?","description":"Need to change the SSH port on your server? This tutorial provides a clear and easy guide for users to update their SSH port for improved security.","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.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/","og_locale":"en_GB","og_type":"article","og_title":"How to Change the SSH Port?","og_description":"Need to change the SSH port on your server? This tutorial provides a clear and easy guide for users to update their SSH port for improved security.","og_url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2025-04-07T06:17:42+00:00","article_modified_time":"2025-04-07T06:18:33+00:00","og_image":[{"width":1024,"height":619,"url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png","type":"image\/png"}],"author":"Ujwala","twitter_misc":{"Written by":"Ujwala","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/","name":"How to Change the SSH Port?","isPartOf":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png","datePublished":"2025-04-07T06:17:42+00:00","dateModified":"2025-04-07T06:18:33+00:00","author":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8"},"description":"Need to change the SSH port on your server? This tutorial provides a clear and easy guide for users to update their SSH port for improved security.","breadcrumb":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#primaryimage","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png","contentUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2025\/04\/terminal-nano-port-highlighted.png","width":1024,"height":619,"caption":"omment this line and change"},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-change-the-ssh-port\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"How to Change the SSH Port?"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8","name":"Ujwala","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g","caption":"Ujwala"},"description":"My aim is to create enriching content on topics related to SEO, web hosting and social media. The idea is to elevate the readers to new levels of usability, accessibility and understanding.","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/ujwala\/"}]}},"views":0,"_links":{"self":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/16538","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=16538"}],"version-history":[{"count":3,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/16538\/revisions"}],"predecessor-version":[{"id":16545,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/16538\/revisions\/16545"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=16538"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=16538"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=16538"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}