{"id":5252,"date":"2014-11-01T15:42:43","date_gmt":"2014-11-01T20:42:43","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=5252"},"modified":"2022-06-03T03:46:35","modified_gmt":"2022-06-03T08:46:35","slug":"install-keystonejs-on-an-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/","title":{"rendered":"Install KeystoneJS on an Ubuntu 14.04"},"content":{"rendered":"
<\/div>

\"install-keystonejs-on-an-ubuntu-14-04\"In this blog post we will show you how to install KeystoneJS on an Ubuntu 14.04 VPS with the latest version of Nginx as a reverse proxy. KeystoneJS is a Node.js content management system and web application platform built on MongoDB and Express. This guide should work on other Linux VPS<\/a> systems as well but was tested and written for Ubuntu 14.04 VPS<\/a>.<\/p>\n

<\/p>\n

Login to your VPS via SSH<\/h4>\n
ssh user@myVPS<\/pre>\n

Update the system and install necessary packages.<\/h4>\n
user@myVPS:~# sudo apt-get update && sudo apt-get -y upgrade\r\nuser@myVPS:~# sudo apt-get install python-software-properties<\/pre>\n

Install Node.js<\/h4>\n

We will install the latest nodejs package from Chris Lea’s repo.<\/p>\n

user@myVPS:~# sudo add-apt-repository ppa:chris-lea\/node.js\r\nuser@myVPS:~# sudo apt-get update\r\nuser@myVPS:~# sudo apt-get install nodejs<\/pre>\n

Install MongoDB<\/h4>\n

We will install the latest mongo package from the official MongoDB repository.<\/p>\n

user@myVPS:~# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10\r\nuser@myVPS:~# echo 'deb http:\/\/downloads-distro.mongodb.org\/repo\/ubuntu-upstart dist 10gen' | sudo tee \/etc\/apt\/sources.list.d\/mongodb.list\r\nuser@myVPS:~# sudo apt-get update\r\nuser@myVPS:~# sudo apt-get install -y mongodb-org<\/pre>\n

Install KeystoneJS<\/h4>\n

We will install KeystoneJS using the KeystoneJS generator made with Yeoman.<\/p>\n

user@myVPS:~# sudo npm install -g generator-keystone\r\nuser@myVPS:~# mkdir ~\/myKeystoneApp\r\nuser@myVPS:~# cd ~\/myKeystoneApp\r\nuser@myVPS:~# yo keystone\r\n<\/pre>\n

The generator will ask you a few questions, install all npm dependencies and configure and copy all the files into the newly created project.<\/p>\n

When the installation is finished, run the following to start the KeystoneJS:<\/p>\n

user@myVPS:~# node keystone<\/pre>\n

If you see the below message, it means you’ve successfully installed KeystoneJS.<\/p>\n

------------------------------------------------\r\nKeystoneJS Started:\r\nMy Site is ready on default port 3000\r\n------------------------------------------------<\/pre>\n

Stop the process with Control-C<\/code> and continue with the Forever installation.<\/p>\n

In case you never heard of Forever, it is a tool which ensures that a given script runs forever.<\/p>\n

user@myVPS:~# sudo npm install forever -g<\/pre>\n

Now you can use forever to start your KeystoneJS instance.<\/p>\n

user@myVPS:~# cd ~\/myKeystoneApp\r\nuser@myVPS:~# forever start keystone.js<\/pre>\n

Install and Configure Nginx<\/h4>\n

The latest version of Nginx 1.6.2 is not available via the default Ubuntu repositories, so we will add the “nginx\/stable” PPA, update the system and install the nginx package.<\/p>\n

user@myVPS:~# sudo add-apt-repository ppa:nginx\/stable\r\nuser@myVPS:~# sudo apt-get update\r\nuser@myVPS:~# sudo apt-get install nginx<\/pre>\n

Create a new Nginx server block with the following content<\/p>\n

user@myVPS:~# sudo nano \/etc\/nginx\/conf.d\/myKeystoneApp.com<\/pre>\n
server {\r\n    server_name myKeystoneApp.com;\r\n    listen 80;\r\n\r\n    access_log \/var\/log\/nginx\/myKeystoneApp-access.log;\r\n    error_log \/var\/log\/nginx\/myKeystoneApp-error.log;\r\n\r\n    location \/ {\r\n        proxy_set_header   X-Real-IP $remote_addr;\r\n        proxy_set_header   Host      $http_host;\r\n        proxy_pass         http:\/\/127.0.0.1:3000;\r\n    }\r\n \r\n}\r\n<\/pre>\n

Test the Nginx configuration and restart the server<\/p>\n

user@myVPS:~# sudo nginx -t\r\nuser@myVPS:~# sudo \/etc\/init.d\/nginx restart<\/pre>\n

That’s it. Now open your browser and type the address of your website ex: http:\/\/myKeystoneApp.com<\/code>.<\/p>\n

For more information about how manage your KeystoneJS application ,please refer to the official KeystoneJS website.<\/p>\n


\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24×7 and will take care of your request immediately.<\/p>\n

PS<\/span><\/strong>. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this blog post we will show you how to install KeystoneJS on an Ubuntu 14.04 VPS with the latest … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":5254,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698,1712],"tags":[604,605,471],"yoast_head":"\nInstall KeystoneJS on an Ubuntu 14.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting\" \/>\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.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-11-01T20:42:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install KeystoneJS on an Ubuntu 14.04\",\"datePublished\":\"2014-11-01T20:42:43+00:00\",\"dateModified\":\"2022-06-03T08:46:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\"},\"wordCount\":367,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png\",\"keywords\":[\"keystonejs\",\"mongodb\",\"Node\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\",\"name\":\"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png\",\"datePublished\":\"2014-11-01T20:42:43+00:00\",\"dateModified\":\"2022-06-03T08:46:35+00:00\",\"description\":\"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install KeystoneJS on an Ubuntu 14.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting","description":"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting","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.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/","og_locale":"en_US","og_type":"article","og_title":"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting","og_description":"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-11-01T20:42:43+00:00","article_modified_time":"2022-06-03T08:46:35+00:00","og_image":[{"width":400,"height":400,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install KeystoneJS on an Ubuntu 14.04","datePublished":"2014-11-01T20:42:43+00:00","dateModified":"2022-06-03T08:46:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/"},"wordCount":367,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png","keywords":["keystonejs","mongodb","Node"],"articleSection":["Tutorials","Ubuntu","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/","url":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/","name":"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png","datePublished":"2014-11-01T20:42:43+00:00","dateModified":"2022-06-03T08:46:35+00:00","description":"Install KeystoneJS on an Ubuntu 14.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/install-keystonejs-on-an-ubuntu-14-04.png","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-keystonejs-on-an-ubuntu-14-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install KeystoneJS on an Ubuntu 14.04"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5252"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=5252"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5252\/revisions"}],"predecessor-version":[{"id":33541,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5252\/revisions\/33541"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/5254"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=5252"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=5252"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=5252"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}