{"id":17453,"date":"2015-08-10T16:46:37","date_gmt":"2015-08-10T21:46:37","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17453"},"modified":"2022-12-16T04:19:47","modified_gmt":"2022-12-16T10:19:47","slug":"install-pencilblue-on-a-debian-8-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/","title":{"rendered":"Install PencilBlue on Debian 8"},"content":{"rendered":"
<\/div>

\"install-pencilblue-on-a-debian-8-vps\"In this blog post we will show you how to install PencilBlue CMS on a Debian 8 VPS with the latest version of Nginx. PencilBlue is an open source content management system built on Node.js. This guide should work on other Linux VPS<\/a> systems as well but was tested and written for Debian 8 VPS<\/a>.
\n<\/p>\n

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

Update the system and install necessary packages.<\/h4>\n
[user]$ sudo apt-get update && sudo apt-get -y upgrade\r\n[user]$ sudo apt-get install curl git<\/pre>\n

Install Node.js<\/h4>\n

We will install the latest nodejs package from the NodeSource repository:<\/p>\n

[user]$ curl --silent --location https:\/\/deb.nodesource.com\/setup_0.12 | sudo bash -\r\n[user]$ sudo apt-get install nodejs<\/pre>\n

Install Redis and MongoDB<\/h4>\n

Install the latest Redis and MongoDB packages from the official Debian repository:<\/p>\n

[user]$ sudo apt-get install mongodb redis-server<\/pre>\n

Install PencilBlue<\/h4>\n

Clone the PencilBlue git repository from github using the following command:<\/p>\n

[user]$ git clone https:\/\/github.com\/pencilblue\/pencilblue.git ~\/pencilblue<\/pre>\n

Pull all dependencies:<\/p>\n

[user]$ cd ~\/pencilblue\r\n[user]$ npm install<\/pre>\n

Create a custom configuration file:<\/p>\n

cp sample.config.js config.js<\/pre>\n

Open the config.js<\/code> file and edit to your liking.<\/p>\n

Install and Configure Nginx<\/h4>\n

The latest version of Nginx, version 1.8 is not available via the default Debian repositories, so we will add the Dotdeb repository. Open the \/etc\/apt\/sources.list file and append the following lines:<\/p>\n

[user]$ sudo vim \/etc\/apt\/sources.list<\/pre>\n
deb http:\/\/packages.dotdeb.org jessie all\r\ndeb-src http:\/\/packages.dotdeb.org jessie all<\/pre>\n

Fetch and install the GnuPG key:<\/p>\n

[user]$ curl -sS http:\/\/www.dotdeb.org\/dotdeb.gpg | sudo apt-key add -<\/pre>\n

Update the system and install Nginx:<\/p>\n

[user]$ sudo apt-get update\r\n[user]$ sudo apt-get -y install nginx<\/pre>\n

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

[user]$ sudo vim \/etc\/nginx\/sites-available\/my_pencilblue.com<\/pre>\n
server {\r\n    server_name my_pencilblue.com;\r\n    listen 80;\r\n\r\n    access_log \/var\/log\/nginx\/my_pencilblue-access.log;\r\n    error_log \/var\/log\/nginx\/my_pencilblue-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:8080;\r\n    }\r\n \r\n}\r\n<\/pre>\n

Activate the server block by creating a symbolic link :<\/p>\n

[user]$ sudo ln -s \/etc\/nginx\/sites-available\/my_pencilblue.com \/etc\/nginx\/sites-enabled\/my_pencilblue.com<\/pre>\n

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

[user]$ sudo nginx -t\r\n[user]$ sudo service nginx restart<\/pre>\n

Create an systemd script<\/h4>\n
[user]$ sudo nano \/etc\/systemd\/system\/pencilblue.service<\/pre>\n
[Unit]\r\nDescription=pencilblue\r\nAfter=network.target\r\n\r\n[Service]\r\nExecStart=\/usr\/bin\/node \/home\/your_username\/pencilblue\/pencilblue.js\r\nRestart=always\r\nStandardOutput=syslog\r\nStandardError=syslog\r\nSyslogIdentifier=pencilblue\r\nEnvironment=NODE_ENV=production\r\nUser=your_username\r\nGroup=your_username\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n

Enable and start your PencilBlue instance with:<\/p>\n

[user]$ sudo systemctl enable pencilblue\r\n[user]$  sudo systemctl start pencilblue\r\n<\/pre>\n

That’s it. Now open your browser, type the address of your website and register the site’s first admin account.<\/p>\n

For more information about how manage your PencilBlue CMS, please refer to the PencilBlue 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 PencilBlue CMS on a Debian 8 VPS with the … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17457,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13,1712],"tags":[468,357,867],"yoast_head":"\nInstall PencilBlue on Debian 8 - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install PencilBlue on Debian 8 - 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-pencilblue-on-a-debian-8-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install PencilBlue on Debian 8 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install PencilBlue on Debian 8 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/\" \/>\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=\"2015-08-10T21:46:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-16T10:19:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"188\" \/>\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-pencilblue-on-a-debian-8-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install PencilBlue on Debian 8\",\"datePublished\":\"2015-08-10T21:46:37+00:00\",\"dateModified\":\"2022-12-16T10:19:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/\"},\"wordCount\":328,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png\",\"keywords\":[\"Mongo\",\"node.js\",\"PencilBlue\"],\"articleSection\":[\"Debian\",\"Tutorials\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/\",\"name\":\"Install PencilBlue on Debian 8 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png\",\"datePublished\":\"2015-08-10T21:46:37+00:00\",\"dateModified\":\"2022-12-16T10:19:47+00:00\",\"description\":\"Install PencilBlue on Debian 8 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png\",\"width\":250,\"height\":188},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install PencilBlue on Debian 8\"}]},{\"@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 PencilBlue on Debian 8 - RoseHosting","description":"Install PencilBlue on Debian 8 - 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-pencilblue-on-a-debian-8-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install PencilBlue on Debian 8 - RoseHosting","og_description":"Install PencilBlue on Debian 8 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-08-10T21:46:37+00:00","article_modified_time":"2022-12-16T10:19:47+00:00","og_image":[{"width":250,"height":188,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.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-pencilblue-on-a-debian-8-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install PencilBlue on Debian 8","datePublished":"2015-08-10T21:46:37+00:00","dateModified":"2022-12-16T10:19:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/"},"wordCount":328,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png","keywords":["Mongo","node.js","PencilBlue"],"articleSection":["Debian","Tutorials","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/","name":"Install PencilBlue on Debian 8 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png","datePublished":"2015-08-10T21:46:37+00:00","dateModified":"2022-12-16T10:19:47+00:00","description":"Install PencilBlue on Debian 8 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/install-pencilblue-on-a-debian-8-vps.png","width":250,"height":188},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-pencilblue-on-a-debian-8-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install PencilBlue on Debian 8"}]},{"@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\/17453"}],"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=17453"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17453\/revisions"}],"predecessor-version":[{"id":44340,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17453\/revisions\/44340"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17457"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17453"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17453"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}