{"id":55,"date":"2019-05-03T12:18:34","date_gmt":"2019-05-03T12:18:34","guid":{"rendered":"https:\/\/wpproonline.com\/?p=55"},"modified":"2026-02-26T10:38:53","modified_gmt":"2026-02-26T10:38:53","slug":"free-aws-ec2-ubuntu-apache-php-mysql-setup","status":"publish","type":"post","link":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/","title":{"rendered":"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">AWS (Amazon Web Services) is an advanced cloud platform which offers lots of features. As cloud platforms go it is mostly for larger projects that need to be able to scale. That said Amazon offers a free tier, which means that you can test out their features for one year for free. Yes, you get cloud services to play with for free! More info on <a href=\"http:\/\/aws.amazon.com\/free\/\" target=\"_blank\" rel=\"noreferrer noopener\">Amazon\u2019s Free Tier page<\/a>.<\/p>\n\n<p><!--more--><\/p>\n\n<p class=\"wp-block-paragraph\">AWS can have a slightly steep learning curve if you haven\u2019t worked with cloud administration before so here is a straight forward guide to get your own LAMP box up and running on AWS.<\/p>\n\n<p class=\"wp-block-paragraph\">1. Create a new AWS account <a href=\"https:\/\/portal.aws.amazon.com\/gp\/aws\/developer\/registration\/index.html\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>, if you are an existing Amazon customer you can simply login with that account. Once you are logged in go into the AWS Management Console, from the menu in the upper right of the page.<\/p>\n\n<p class=\"wp-block-paragraph\">2. Now we need to set up your security group, the basics for allowing you to login to your server. Click on EC2 to enter the EC2 Dashboard. EC stands for Elastic Cloud which is Amazon\u2019s name for their Cloud Servers. Click on Security Groups under Network &amp; Security in the left menu and select the default group in the table. Select the Inbound tab and add rules forSSH, HTTP and HTTPS, then click apply Rule Changes. If you need other protocols for your server you need to add them here.<\/p>\n\n<p class=\"wp-block-paragraph\">3. Let\u2019s create an instance. Click on Instances under instances in the left menu and click launch Instance. Select the quick Launch Wizard and type in a descriptive name for your instance. Choose to create a new key pair and download the key, which is a .pem file you need to access your server securely. Then select a launch configuration from the list, my suggestion is one of the Ubuntu Server configurations which are eligible for the free tier. You always need to keep an eye on what you do in the AWS Management Console since you don\u2019t want to enable stuff Amazon will charge you for. ClickContinueand then Edit Details. Make sure that under security Settingsthedefaultsecurity group is selected. It is important that you configure the security groups before launching the respective instance since you won\u2019t be able to change it after launch. ClickLaunchand in a couple of seconds your instance will be up and running. Congratulations you have a new LAMP box to play with.<\/p>\n\n<p class=\"wp-block-paragraph\">4. In order to connect to the instance, we need to assign an IP address. In the left menu in theEC2 Management Console select Elastic IPs under Network &amp; Security. Allocate a new address and assign it to your instance. Elastic IPs are free as long as they are assigned to an instance, so remember not to leave any unallocated IP addresses as you will get charged by the hour. Remember the assigned IP.<\/p>\n\n<p class=\"wp-block-paragraph\">5. On your local machine use the .pem key to SSH into your instance. On OS X change the permission of the key to 600 and use the following command in terminal:<\/p>\n\n<pre><code>ssh -i yourkeyname.pem ubuntu@yourelasticip<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">and boom you are in.<\/p>\n\n<p class=\"wp-block-paragraph\">6. Update the Ubuntu package manager and the installed packages:<\/p>\n\n<pre><code>sudo apt-get update\nsudo apt-get dist-upgrade<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">7. Install Apache:<\/p>\n\n<pre><code>sudo apt-get install apache2<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">8. Enable .htaccess files by editing the <em>\/etc\/apache2\/sites-available\/default<\/em> file, fx with vi. Look for the <em>\/var\/www<\/em> directory and make sure it contains <em>AllowOverride All<\/em>.<\/p>\n\n<p class=\"wp-block-paragraph\">9. Enable the rewrite module in Apache:<\/p>\n\n<pre><code>sudo a2enmod rewrite<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">10. Install PHP<\/p>\n\n<pre><code>sudo apt-get install libapache2-mod-php5<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">11. Restart Apache:<\/p>\n\n<pre><code>sudo \/etc\/init.d\/apache2 restart<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">12. Ensure that Apache is running by typing the instance IP in your browser.<\/p>\n\n<p class=\"wp-block-paragraph\">13. Allow the Ubuntu user to work with the \/var\/www folder:<\/p>\n\n<pre><code>sudo adduser ubuntu www-data\nsudo chown -R www-data:www-data \/var\/www\nsudo chmod -R ug+rw \/var\/www<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Logout and login again to pick up the new user group. Test by creating a directory and deleting it again in www without having to sudo. This will make your life easier since permissions will get messed up less once you start adding frameworks and tools to your web service.<\/p>\n\n<p class=\"wp-block-paragraph\">14. Test PHP by cd into \/var\/www folder and typing <strong><em>sudo vi phptest.php<\/em><\/strong>. Hit <em>i<\/em> key to enter insert mode and just write a simple php script with a <strong><em>phpinfo()<\/em><\/strong> call. Hit <em>ESC<\/em> to exit insert mode and type <em><strong>:wq<\/strong><\/em> to save and quit the vi editor. Go to instanceIP\/phptest.php in your browser and you should see the phpinfo displayed.<\/p>\n\n<p class=\"wp-block-paragraph\">15. Install MySQL:<\/p>\n\n<pre><code>sudo apt-get install mysql-server\nsudo apt-get install php5-mysql<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Insert root password for the database and remember it.<\/p>\n\n<p class=\"wp-block-paragraph\">16. To test MySQL let\u2019s install PHPMyAdmin:<\/p>\n\n<pre><code>sudo apt-get install phpmyadmin<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Select Apache2 as server and Create Databases, just follow the instructions. Go to instance IP\/phpmyadmin to test.<\/p>\n\n<p class=\"wp-block-paragraph\">If there are any issues check the <a href=\"https:\/\/help.ubuntu.com\/community\/phpMyAdmin\">ubuntu community<\/a> for help.\u00a0<\/p>\n\n<p class=\"wp-block-paragraph\">\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AWS (Amazon Web Services) is an advanced cloud platform which offers lots of features. As cloud platforms go it is mostly for larger projects that need to be able to&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[82,85,86],"tags":[81,83,84],"class_list":["post-55","post","type-post","status-publish","format-standard","hentry","category-aws","category-linux","category-ubuntu","tag-aws","tag-aws-free","tag-aws-server-setup"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup - DigitalHubZ<\/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:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup\" \/>\n<meta property=\"og:description\" content=\"AWS (Amazon Web Services) is an advanced cloud platform which offers lots of features. As cloud platforms go it is mostly for larger projects that need to be able to&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"DigitalHubZ\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-03T12:18:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T10:38:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1232\" \/>\n\t<meta property=\"og:image:height\" content=\"369\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"DigitalHubZ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DigitalHubZ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/\"},\"author\":{\"name\":\"DigitalHubZ\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\"},\"headline\":\"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup\",\"datePublished\":\"2019-05-03T12:18:34+00:00\",\"dateModified\":\"2026-02-26T10:38:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/\"},\"wordCount\":751,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"keywords\":[\"AWS\",\"AWS Free\",\"AWS Server Setup\"],\"articleSection\":[\"AWS\",\"Linux\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/\",\"name\":\"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup - DigitalHubZ\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\"},\"datePublished\":\"2019-05-03T12:18:34+00:00\",\"dateModified\":\"2026-02-26T10:38:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/free-aws-ec2-ubuntu-apache-php-mysql-setup\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"name\":\"DigitalHubZ\",\"description\":\"Future-Ready Digital Solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\",\"name\":\"DigitalHubZ\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"width\":1232,\"height\":369,\"caption\":\"DigitalHubZ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\",\"name\":\"DigitalHubZ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"caption\":\"DigitalHubZ\"},\"sameAs\":[\"https:\\\/\\\/digitalhubz.com\"],\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/author\\\/digi_v1_wp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup - DigitalHubZ","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.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/","og_locale":"en_US","og_type":"article","og_title":"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup","og_description":"AWS (Amazon Web Services) is an advanced cloud platform which offers lots of features. As cloud platforms go it is mostly for larger projects that need to be able to&hellip;","og_url":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/","og_site_name":"DigitalHubZ","article_published_time":"2019-05-03T12:18:34+00:00","article_modified_time":"2026-02-26T10:38:53+00:00","og_image":[{"width":1232,"height":369,"url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","type":"image\/webp"}],"author":"DigitalHubZ","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DigitalHubZ","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/#article","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/"},"author":{"name":"DigitalHubZ","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873"},"headline":"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup","datePublished":"2019-05-03T12:18:34+00:00","dateModified":"2026-02-26T10:38:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/"},"wordCount":751,"commentCount":0,"publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"keywords":["AWS","AWS Free","AWS Server Setup"],"articleSection":["AWS","Linux","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/","url":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/","name":"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup - DigitalHubZ","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#website"},"datePublished":"2019-05-03T12:18:34+00:00","dateModified":"2026-02-26T10:38:53+00:00","breadcrumb":{"@id":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.digitalhubz.com\/blog\/free-aws-ec2-ubuntu-apache-php-mysql-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.digitalhubz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Free AWS EC2 Ubuntu-Apache-PHP-MySQL setup"}]},{"@type":"WebSite","@id":"https:\/\/www.digitalhubz.com\/blog\/#website","url":"https:\/\/www.digitalhubz.com\/blog\/","name":"DigitalHubZ","description":"Future-Ready Digital Solutions","publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.digitalhubz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.digitalhubz.com\/blog\/#organization","name":"DigitalHubZ","url":"https:\/\/www.digitalhubz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","width":1232,"height":369,"caption":"DigitalHubZ"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873","name":"DigitalHubZ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","caption":"DigitalHubZ"},"sameAs":["https:\/\/digitalhubz.com"],"url":"https:\/\/www.digitalhubz.com\/blog\/author\/digi_v1_wp\/"}]}},"_links":{"self":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/55","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/comments?post=55"}],"version-history":[{"count":6,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/55\/revisions"}],"predecessor-version":[{"id":54698,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/55\/revisions\/54698"}],"wp:attachment":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media?parent=55"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/categories?post=55"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/tags?post=55"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}