{"id":14902,"date":"2023-06-23T08:10:07","date_gmt":"2023-06-23T07:10:07","guid":{"rendered":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?p=14902"},"modified":"2023-12-12T09:45:03","modified_gmt":"2023-12-12T09:45:03","slug":"how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate","status":"publish","type":"post","link":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/","title":{"rendered":"How to Install Apache and Secure it with a Let&#8217;s Encrypt SSL Certificate?"},"content":{"rendered":"\n<p>Apache is one of the most widely used HTTP web servers. It&#8217;s used for setting up Apache and security with an SSL certificate.<\/p>\n\n\n\n<p>In this article, we will learn how to set up Apache for your website on Ubuntu and CentOS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Creating DNS Record<\/h2>\n\n\n\n<p>Login to Cloudflare or your domain registrar (if not Cloudflare) and create an A record to point the domain to the cloud VMs IP.<\/p>\n\n\n\n<p>Refer to the image given below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png\"><img loading=\"lazy\" decoding=\"async\" width=\"602\" height=\"187\" src=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png\" alt=\"Creating DNS Record \" class=\"wp-image-14903\" srcset=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png 602w, https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record-300x93.png 300w\" sizes=\"auto, (max-width: 602px) 100vw, 602px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Apache (Ubuntu)<\/h2>\n\n\n\n<p><strong>To update the available packages up-to-date:<\/strong><\/p>\n\n\n\n<p>sudo apt-get update<br>Install Apache<br>sudo apt-get install apache2<\/p>\n\n\n\n<p><strong>Allow ports 80 and 443 in your firewall for the HTTP server.<\/strong><\/p>\n\n\n\n<p>Type the command given below:<\/p>\n\n\n\n<p>sudo ufw allow &#8216;Apache Full&#8217;<br>Check out that your installed Apache runs perfectly.<br>sudo systemctl status apache2<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring Apache to Serve the Important Files<\/h2>\n\n\n\n<p>Follow the steps given below to do so:<\/p>\n\n\n\n<p>Create a folder for serving your web apps<\/p>\n\n\n\n<p>sudo mkdir -p \/var\/www\/test.sanakil.xyz\/webapp<\/p>\n\n\n\n<p>sudo vi \/var\/www\/test.sanakil.xyz\/webapp\/index.html<\/p>\n\n\n\n<p>Now paste the below HTML snippet for testing.<\/p>\n\n\n\n<p>&lt;!DOCTYPE html&gt; &lt;html lang=&#8221;en&#8221;&gt; &lt;head&gt; &lt;title&gt;Apache webapp&lt;\/title&gt; &lt;\/head&gt; &lt;body&gt; &lt;h1&gt;My Apache webapp is working in test.sanakil.xyz&lt;\/h1&gt; &lt;\/body&gt; &lt;\/html&gt;<\/p>\n\n\n\n<p>Then, you need to create a folder for generating and storing the logs.<\/p>\n\n\n\n<p>Type the command given below:<\/p>\n\n\n\n<p>sudo mkdir -p \/var\/www\/test.sanakil.xyz\/log sudo touch <\/p>\n\n\n\n<p>\/var\/www\/test.sanakil.xyz\/request.log sudo touch <\/p>\n\n\n\n<p>\/var\/www\/test.sanakil.xyz\/log\/error.log<\/p>\n\n\n\n<p>Open Conf file (Ubuntu)<\/p>\n\n\n\n<p>To do so:<\/p>\n\n\n\n<p>sudo vi \/etc\/apache2\/sites-available\/test.sanakil.xyz.conf<\/p>\n\n\n\n<p>Open conf file (CentOS)<\/p>\n\n\n\n<p>sudo vi \/etc\/httpd\/sites-available\/test.sankil.xyz.conf<\/p>\n\n\n\n<p>Paste the below conf snippet by making a change in your domain name.<\/p>\n\n\n\n<p>&lt;VirtualHost *:80&gt;<\/p>\n\n\n\n<p>ServerName test.sanakil.xyz<\/p>\n\n\n\n<p>ServerAlias test.sanaki.xyz<\/p>\n\n\n\n<p>DocumentRoot \/var\/www\/test.sanakil.xyz\/webapp<\/p>\n\n\n\n<p>ErrorLog \/var\/www\/test.sankil.xyz\/log\/error.log<\/p>\n\n\n\n<p>CustomLog \/var\/www\/test.sanakil.xyz\/log\/requests.log combined<\/p>\n\n\n\n<p>&lt;\/VirtualHost&gt;<\/p>\n\n\n\n<p>You will have to give the required permission for your folder.<\/p>\n\n\n\n<p>sudo chown -R $USER:$USER \/var\/www\/test.abc.xyz<\/p>\n\n\n\n<p>Copy<\/p>\n\n\n\n<p>sudo chmod -R 755 \/var\/www\/test.abc.xyz<\/p>\n\n\n\n<p>Enable your virtual host config file in apache(Ubuntu)<\/p>\n\n\n\n<p>sudo a2ensite test.sanakil.xyz.conf<\/p>\n\n\n\n<p>First, disable the default conf file for security reasons.<\/p>\n\n\n\n<p>sudo a2dissite 000-default.conf<\/p>\n\n\n\n<p>Restart the Apache to make changes to take effect.<\/p>\n\n\n\n<p>sudo systemctl restart apache2<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Additional Setup for CentOS<\/h2>\n\n\n\n<p>In CentOS(SELinux), everything is not enabled by default like Ubuntu.<\/p>\n\n\n\n<p>Create sites-enabled and sites-available folders in Apache.<\/p>\n\n\n\n<p>sites-enabled &#8211; serves visitors with the cof files in it<\/p>\n\n\n\n<p>sites-available &#8211; stores the virtual host conf files<\/p>\n\n\n\n<p>sudo mkdir \/etc\/httpd\/sites-available \/etc\/httpd\/sites-enabled<\/p>\n\n\n\n<p>Tell the apache to read the conf file in the sites-enabled folder.<\/p>\n\n\n\n<p>sudo vi \/etc\/httpd\/conf\/httpd.conf<\/p>\n\n\n\n<p>Then, add the below line at end of the file<\/p>\n\n\n\n<p>IncludeOptional sites-enabled\/*.conf<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to Enable HTTPS<\/h2>\n\n\n\n<p>Enabling HTTPS in the Apache web server in Ubuntu is easy with the certbot and Let&#8217;s Encrypt.<\/p>\n\n\n\n<p>Let&#8217;s Encrypt is a Certificate Authority that provides <a href=\"https:\/\/www.milesweb.co.uk\/web-security\/free-ssl-certificate\">free SSL certificates<\/a> for millions of websites.<\/p>\n\n\n\n<p>On the other hand, Certbot is software that automatically sets up HTTPS for our website using Let&#8217;s Encrypt.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Adding and Install Certbot for Apache (Ubuntu)<\/h2>\n\n\n\n<p><strong>Enter the commands given below:<\/strong><\/p>\n\n\n\n<p>sudo add-apt-repository ppa:certbot\/certbot<\/p>\n\n\n\n<p>sudo apt install python-certbot-apache<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Adding and Installing certbot for Apache (CentOS)<\/h2>\n\n\n\n<p>sudo yum install epel-release<br>sudo yum install certbot python2-certbot-apache mod_ssl<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting an SSL Certificate<\/h2>\n\n\n\n<p>sudo certbot &#8211;apache -d your-domain-name<\/p>\n\n\n\n<p>This is how the verification is done by certbot with no issues. You will be asked for HTTPS redirection.<\/p>\n\n\n\n<p>Choose option two and click on enter. That&#8217;s it!<\/p>\n\n\n\n<p>Hope this article has given you an idea of how to install and execute an SSL certificate on Apache.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Apache is one of the most widely used HTTP web servers. It&#8217;s used for setting up Apache and security with an SSL certificate. In this article, we will learn how to set up Apache for your website on Ubuntu and CentOS. Creating DNS Record Login to Cloudflare or your domain registrar (if not Cloudflare) and [&hellip;]<\/p>\n","protected":false},"author":34,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[1417,2975],"class_list":["post-14902","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-ssl-issues-faq","tag-apache-server","tag-lets-encrypt-ssl-certificate"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install Apache and Secure it with a Let&#039;s Encrypt SSL Certificate?<\/title>\n<meta name=\"description\" content=\"Configure Apache with the full-proof security through Let&#039;s Encrypt SSL Certificate. Here is the right steps mentioned in this guide.\" \/>\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-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Apache and Secure it with a Let&#039;s Encrypt SSL Certificate?\" \/>\n<meta property=\"og:description\" content=\"Configure Apache with the full-proof security through Let&#039;s Encrypt SSL Certificate. Here is the right steps mentioned in this guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-23T07:10:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-12T09:45:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png\" \/>\n<meta name=\"author\" content=\"Nehal Khatri\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nehal Khatri\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 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-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/\",\"name\":\"How to Install Apache and Secure it with a Let's Encrypt SSL Certificate?\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png\",\"datePublished\":\"2023-06-23T07:10:07+00:00\",\"dateModified\":\"2023-12-12T09:45:03+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/0241ea191f60975839d956b6952e0a1d\"},\"description\":\"Configure Apache with the full-proof security through Let's Encrypt SSL Certificate. Here is the right steps mentioned in this guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png\",\"contentUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png\",\"width\":602,\"height\":187,\"caption\":\"Creating DNS Record\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Apache and Secure it with a Let&#8217;s Encrypt SSL Certificate?\"}]},{\"@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\/0241ea191f60975839d956b6952e0a1d\",\"name\":\"Nehal Khatri\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/736396ef8d8bdecec53ce8851058903e?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/736396ef8d8bdecec53ce8851058903e?s=96&d=blank&r=g\",\"caption\":\"Nehal Khatri\"},\"description\":\"Nehal is an ardent content writer. She's passionate about crafting content that's simple but adds value. Her insatiable interest in writing has allowed her to explore her skills. She is adept and can write for different types of content formats.\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/nehal-khatri\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Apache and Secure it with a Let's Encrypt SSL Certificate?","description":"Configure Apache with the full-proof security through Let's Encrypt SSL Certificate. Here is the right steps mentioned in this guide.","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-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/","og_locale":"en_GB","og_type":"article","og_title":"How to Install Apache and Secure it with a Let's Encrypt SSL Certificate?","og_description":"Configure Apache with the full-proof security through Let's Encrypt SSL Certificate. Here is the right steps mentioned in this guide.","og_url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2023-06-23T07:10:07+00:00","article_modified_time":"2023-12-12T09:45:03+00:00","og_image":[{"url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png","type":"","width":"","height":""}],"author":"Nehal Khatri","twitter_misc":{"Written by":"Nehal Khatri","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/","name":"How to Install Apache and Secure it with a Let's Encrypt SSL Certificate?","isPartOf":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png","datePublished":"2023-06-23T07:10:07+00:00","dateModified":"2023-12-12T09:45:03+00:00","author":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/0241ea191f60975839d956b6952e0a1d"},"description":"Configure Apache with the full-proof security through Let's Encrypt SSL Certificate. Here is the right steps mentioned in this guide.","breadcrumb":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#primaryimage","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png","contentUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2023\/06\/creating-dns-record.png","width":602,"height":187,"caption":"Creating DNS Record"},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-install-apache-and-secure-it-with-a-lets-encrypt-ssl-certificate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"How to Install Apache and Secure it with a Let&#8217;s Encrypt SSL Certificate?"}]},{"@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\/0241ea191f60975839d956b6952e0a1d","name":"Nehal Khatri","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/736396ef8d8bdecec53ce8851058903e?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/736396ef8d8bdecec53ce8851058903e?s=96&d=blank&r=g","caption":"Nehal Khatri"},"description":"Nehal is an ardent content writer. She's passionate about crafting content that's simple but adds value. Her insatiable interest in writing has allowed her to explore her skills. She is adept and can write for different types of content formats.","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/nehal-khatri\/"}]}},"views":68,"_links":{"self":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/14902","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\/34"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=14902"}],"version-history":[{"count":2,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/14902\/revisions"}],"predecessor-version":[{"id":15151,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/14902\/revisions\/15151"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=14902"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=14902"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=14902"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}