{"id":18947,"date":"2016-04-02T15:52:05","date_gmt":"2016-04-02T20:52:05","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18947"},"modified":"2022-06-03T03:43:41","modified_gmt":"2022-06-03T08:43:41","slug":"install-habari-with-nginx-on-debian-8","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/","title":{"rendered":"Install Habari with Nginx on Debian 8"},"content":{"rendered":"
<\/div>

\"habari\"In this tutorial we will cover the steps needed for installing Habari<\/a> with Nginx on a Debian 8 VPS<\/a>.<\/p>\n

Habari is a free and open source blog engine written in PHP that currently supports MySQL, SQLite and PostgreSQL for the database backend. It is a publishing platform and application framework with a modular, object-oriented core.<\/p>\n

An interesting fact is that the name Habari comes from the Swahili greeting habari which means “(what’s the) news”.<\/p>\n

REQUIREMENTS<\/h4>\n

We will be using our SSD 1<\/strong> Linux VPS<\/a> hosting plan for this tutorial. This article assumes that you already have Nginx, MySQL and PHP installed and configured on your server. If that is not the case, you can follow our great tutorial<\/a> and install the LEMP stack on your server easily.<\/p>\n

LOG IN TO YOUR SERVER VIA SSH<\/h4>\n
# ssh root@server_ip<\/pre>\n

You can check whether you have the proper Debian version installed on your server with the following command:<\/p>\n

# lsb_release -a<\/pre>\n

You should get this output:<\/p>\n

Distributor ID: Debian\r\nDescription:    Debian GNU\/Linux 8.3 (jessie)\r\nRelease:        8.3\r\nCodename:       jessie<\/pre>\n

UPDATE THE SYSTEM<\/h4>\n

Make sure your server is fully up to date using:<\/p>\n

# apt-get update && apt-get upgrade<\/pre>\n

You can now create a database that will be needed for the Habari installation. Log into MySQL as root and execute the following queries:<\/p>\n

# mysql -u root -p\r\n\r\nmysql> create database habari;\r\nQuery OK, 1 row affected (0.00 sec)\r\n\r\nmysql> grant all privileges on habari.* to habariuser@localhost identified by 'your_password';\r\nQuery OK, 0 rows affected (0.00 sec)\r\n\r\nmysql> flush privileges;\r\nQuery OK, 0 rows affected (0.00 sec)\r\n\r\nmysql> exit\r\nBye<\/pre>\n

INSTALL HABARI<\/h4>\n

Your next step is to download Habari and install it, configuring an Nginx virtual host directive for your domain along the way. First enter a directory of your choice where you will download the latest Habari version which at the moment of writing this article is version 0.9.2<\/strong>.<\/p>\n

We will use the \/opt<\/strong><\/em> directory but feel free to download Habari to a location of your choice.<\/p>\n

# cd \/opt\r\n\r\n# wget http:\/\/habariproject.org\/dist\/habari-0.9.2.zip<\/pre>\n

Create a directory in which the unpacked installation will be moved:<\/p>\n

# mkdir -p \/var\/www\/html\/habari<\/pre>\n

Unzip the archive into the above mentioned directory:<\/p>\n

# unzip habari-0.9.2.zip -d \/var\/www\/html\/habari\/<\/pre>\n

Assign the proper ownership of files and directories so your Nginx web server can actually read the data:<\/p>\n

# chown -R www-data: \/var\/www\/html\/habari\/<\/pre>\n

And last but not least, open a Nginx file, let’s call it habari which will serve as a virtual host for the domain you’ll use to host Habari.<\/p>\n

# nano \/etc\/nginx\/sites-available\/habari<\/pre>\n

Paste the below lines into the file:<\/p>\n

server {\r\n    server_name domainname.com;\r\n\r\n    access_log \/var\/log\/nginx\/domainname.com-access.log;\r\n    error_log \/var\/log\/nginx\/domainname.com-error.log;\r\n    root \/var\/www\/html\/habari;\r\n\r\n    location \/ {\r\n        index index.php;\r\n        try_files $uri $uri\/ \/index.php$is_args$args;\r\n    }\r\n\r\n    location ~ \\.php$ {\r\n        include \/etc\/nginx\/fastcgi_params;\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_index index.php;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    }\r\n}<\/pre>\n

Of course, don’t forget to replace domainname.com<\/strong> with your actual domain. Save and close the file. Then, enable it by creating a symlink:<\/p>\n

# ln -s \/etc\/nginx\/sites-available\/habari \/etc\/nginx\/sites-enabled\/<\/pre>\n

Test the Nginx configuration:<\/p>\n

# nginx -t<\/pre>\n

If everything is successful, restart Nginx so the changes can take effect:<\/p>\n

# service nginx restart<\/pre>\n

Now open your favorite web browser and navigate to http:\/\/your_domain.com<\/strong> to finish the Habari installation.<\/p>\n

Enter the database credentials under Database Setup<\/strong> and click on Check Database Connection<\/strong> to verify that the credentials are correct.<\/p>\n

After that configure your site under Site Configuration<\/strong> in which you can name your Habari site, username, password and email.<\/p>\n

Next, choose your theme, plugins and click on Install Habari<\/strong> to proceed.<\/p>\n

Congratulations, you have successfully installed Habari with Nginx on your Debian 8 server.<\/p>\n

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

PS.<\/span> 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 tutorial we will cover the steps needed for installing Habari with Nginx on a Debian 8 VPS. Habari … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18137,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1710,13],"tags":[48,987,49],"yoast_head":"\nInstall Habari with Nginx on Debian 8 - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Habari with Nginx 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-habari-with-nginx-on-debian-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Habari with Nginx on Debian 8 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install Habari with Nginx on Debian 8 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/\" \/>\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=\"2016-04-02T20:52:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:43:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png\" \/>\n\t<meta property=\"og:image:width\" content=\"152\" \/>\n\t<meta property=\"og:image:height\" content=\"194\" \/>\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=\"4 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-habari-with-nginx-on-debian-8\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Habari with Nginx on Debian 8\",\"datePublished\":\"2016-04-02T20:52:05+00:00\",\"dateModified\":\"2022-06-03T08:43:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/\"},\"wordCount\":536,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png\",\"keywords\":[\"debian\",\"habari\",\"nginx\"],\"articleSection\":[\"CentOS\",\"CMS, CRM, ERP\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/\",\"name\":\"Install Habari with Nginx on Debian 8 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png\",\"datePublished\":\"2016-04-02T20:52:05+00:00\",\"dateModified\":\"2022-06-03T08:43:41+00:00\",\"description\":\"Install Habari with Nginx on Debian 8 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png\",\"width\":152,\"height\":194},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Habari with Nginx 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 Habari with Nginx on Debian 8 - RoseHosting","description":"Install Habari with Nginx 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-habari-with-nginx-on-debian-8\/","og_locale":"en_US","og_type":"article","og_title":"Install Habari with Nginx on Debian 8 - RoseHosting","og_description":"Install Habari with Nginx on Debian 8 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-04-02T20:52:05+00:00","article_modified_time":"2022-06-03T08:43:41+00:00","og_image":[{"width":152,"height":194,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Habari with Nginx on Debian 8","datePublished":"2016-04-02T20:52:05+00:00","dateModified":"2022-06-03T08:43:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/"},"wordCount":536,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png","keywords":["debian","habari","nginx"],"articleSection":["CentOS","CMS, CRM, ERP","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/","url":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/","name":"Install Habari with Nginx on Debian 8 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png","datePublished":"2016-04-02T20:52:05+00:00","dateModified":"2022-06-03T08:43:41+00:00","description":"Install Habari with Nginx on Debian 8 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/habari.png","width":152,"height":194},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-habari-with-nginx-on-debian-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Habari with Nginx 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\/18947"}],"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=18947"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18947\/revisions"}],"predecessor-version":[{"id":41989,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18947\/revisions\/41989"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18137"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18947"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18947"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18947"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}