{"id":18095,"date":"2015-11-23T14:40:25","date_gmt":"2015-11-23T20:40:25","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18095"},"modified":"2022-06-03T03:44:02","modified_gmt":"2022-06-03T08:44:02","slug":"how-to-install-fuelphp-with-nginx-on-debian-8-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/","title":{"rendered":"How to install FuelPHP with Nginx on a Debian 8 VPS"},"content":{"rendered":"
<\/div>

\"fuelphp\"FuelPHP is a PHP framework which is simple, flexible and driven by the community. It is designed from the ground up to support the Hierarchical model\u2013view\u2013controller (HMVC) and it provides command line tool to create projects, debug projects or perform similar tasks. Today we will show you how to install FuelPHP on a Linux VPS<\/a>.<\/p>\n

<\/p>\n

Since we are going to install FuelPHP on a Debian 8 VPS<\/a> with Nginx as a web server already preinstalled, make sure that you have Nginx preinstalled on your server too. If you do not have Nginx preinstalled on your server you can use our LEMP stack installation<\/a> guide to install Nginx and the other LEMP stack components.<\/p>\n

If Nginx is installed on your server you can continue with the instructions below.
\nFirst of all, connect to your server via SSH and update all your system software to the latest version available. Use the commands below for that purpose:<\/p>\n

sudo apt-get update\r\nsudo apt-get upgrade<\/pre>\n

This could take a few moments. Once the update is completed, you can continue with the other steps. Go ahead and install Git by using the following command:<\/p>\n

sudo apt-get install git-core<\/pre>\n

We will use the quick installer to install FuelPHP. First download the Oil package using curl:<\/p>\n

curl get.fuelphp.com\/oil | sh<\/pre>\n

This will download the Oil package and will store it into the ‘\/usr\/bin’ directory on your Debian VPS<\/a>. Later, you can use Oil to create Fuel projects. To create a new FuelPHP project, navigate to the ‘\/var\/www’ directory:<\/p>\n

cd \/var\/www\/<\/pre>\n

and issue the following command:<\/p>\n

oil create first_project<\/pre>\n

It will take a few moments for your first project to be ready. The installer will also run ‘oil refine install’ and ‘php composer.phar update’ which make some of the necessary directories writable and pull the composer dependencies.<\/p>\n

Now, create a new Nginx configuration file and add the following virtual block for your domain name:<\/p>\n

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

Enter the following content:<\/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\/first_project\/public;\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 FUEL_ENV \"production\";\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    }\r\n}\r\n<\/pre>\n

Do not forget to replace domainname.com with your actual domain name. Save the file, enable the site and restart Nginx so the changes can take effect. Now you should be able to access your first FuelPHP project using a web browser. Open you favorite web browser and navigate to your domain name.<\/p>\n

To get started with FuelPHP our recommendation is to read the official FuelPHP documentation available at http:\/\/fuelphp.com\/docs\/<\/a>. There you can find more information about how to configure your application, how to configure a database\u00a0etc.<\/p>\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 install FuelPHP for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS. 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":"

FuelPHP is a PHP framework which is simple, flexible and driven by the community. It is designed from the ground … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18098,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13,1712,1707],"tags":[991,975,976],"yoast_head":"\nHow to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install FuelPHP with Nginx on a Debian 8 VPS - 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\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-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-11-23T20:40:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png\" \/>\n\t<meta property=\"og:image:width\" content=\"850\" \/>\n\t<meta property=\"og:image:height\" content=\"425\" \/>\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\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install FuelPHP with Nginx on a Debian 8 VPS\",\"datePublished\":\"2015-11-23T20:40:25+00:00\",\"dateModified\":\"2022-06-03T08:44:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/\"},\"wordCount\":484,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png\",\"keywords\":[\"fuelphp\",\"fuelphp linux vps\",\"install fuelphp debian\"],\"articleSection\":[\"Debian\",\"Tutorials\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/\",\"name\":\"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png\",\"datePublished\":\"2015-11-23T20:40:25+00:00\",\"dateModified\":\"2022-06-03T08:44:02+00:00\",\"description\":\"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png\",\"width\":850,\"height\":425},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install FuelPHP with Nginx on a Debian 8 VPS\"}]},{\"@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":"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting","description":"How to install FuelPHP with Nginx on a Debian 8 VPS - 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\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting","og_description":"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-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-11-23T20:40:25+00:00","article_modified_time":"2022-06-03T08:44:02+00:00","og_image":[{"width":850,"height":425,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.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\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install FuelPHP with Nginx on a Debian 8 VPS","datePublished":"2015-11-23T20:40:25+00:00","dateModified":"2022-06-03T08:44:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/"},"wordCount":484,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png","keywords":["fuelphp","fuelphp linux vps","install fuelphp debian"],"articleSection":["Debian","Tutorials","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/","name":"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png","datePublished":"2015-11-23T20:40:25+00:00","dateModified":"2022-06-03T08:44:02+00:00","description":"How to install FuelPHP with Nginx on a Debian 8 VPS - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/fuelphp.png","width":850,"height":425},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-fuelphp-with-nginx-on-debian-8-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install FuelPHP with Nginx on a Debian 8 VPS"}]},{"@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\/18095"}],"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=18095"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18095\/revisions"}],"predecessor-version":[{"id":42048,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18095\/revisions\/42048"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18098"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18095"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18095"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}