{"id":17294,"date":"2015-06-25T16:26:00","date_gmt":"2015-06-25T21:26:00","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17294"},"modified":"2022-12-15T09:46:39","modified_gmt":"2022-12-15T15:46:39","slug":"install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/","title":{"rendered":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL"},"content":{"rendered":"
<\/div>

\"fuelcms\"Fuel CMS is a lightweight, highly customizable CMS built with the very popular PHP framework CodeIgniter. You can create custom modules, views and controllers and use the CMS part only when you need it. It is a hybrid of a framework and a CMS.<\/p>\n

<\/p>\n

In this tutorial we will cover the steps needed for installing Fuel CMS on an Ubuntu 14.04 VPS<\/a> with Nginx, PHP-FPM and MySQL.<\/p>\n

REQUIREMENTS<\/strong><\/p>\n

We will be using our SSD 1 Linux VPS<\/a> Hosting plan for this tutorial.<\/p>\n

UPDATE THE SYSTEM<\/strong><\/p>\n

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

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

Your next step is to install Nginx, PHP-FPM and MySQL. Run the following command:<\/p>\n

# apt-get install nginx php5-fpm mysql-server php5-mysql<\/pre>\n

Then, create the database needed for Fuel CMS. Log into your MySQL service as root:<\/p>\n

# mysql -u root -p\r\n\r\nmysql> create database fuel;\r\n\r\nmysql> grant all privileges on fuel.* to fuelusr@localhost identified by 'your_password';\r\n\r\nmysql> flush privileges;\r\n\r\nmysql> exit\r\nBye<\/pre>\n

INSTALL FUEL CMS<\/strong><\/p>\n

Now, install Fuel CMS. For our purposes we will download Fuel into the \/opt<\/em> directory. Run the following commands:<\/p>\n

# cd \/opt\r\n\r\n# wget https:\/\/codeload.github.com\/daylightstudio\/FUEL-CMS\/zip\/master<\/pre>\n

Unzip the downloaded archive:<\/p>\n

# unzip master<\/pre>\n

Rename the directory into a simpler name:<\/p>\n

# mv FUEL-CMS-master\/ fuelcms<\/pre>\n

Move the Fuel CMS installation into \/var\/www\/ :<\/p>\n

# mv fuelcms\/ \/var\/www\/<\/pre>\n

Enter the directory:<\/p>\n

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

Configure the fuel\/application\/config\/database.php<\/em> file with the proper database connection settings. With your favorite text editor open the file, we are using vim:<\/p>\n

# vim fuelcms\/fuel\/application\/config\/database.php<\/pre>\n

Fill in the credentials of the database you created previously. After modifying, the lines should look like this:<\/p>\n

$active_group = 'default';\r\n$active_record = TRUE;\r\n\r\n$db['default']['hostname'] = 'localhost';\r\n$db['default']['username'] = 'fuelusr';\r\n$db['default']['password'] = 'your_password';\r\n$db['default']['database'] = 'fuel';\r\n$db['default']['dbdriver'] = 'mysql';\r\n$db['default']['dbprefix'] = '';\r\n$db['default']['pconnect'] = TRUE;\r\n$db['default']['db_debug'] = TRUE;\r\n$db['default']['cache_on'] = FALSE;\r\n$db['default']['cachedir'] = '';\r\n$db['default']['char_set'] = 'utf8';\r\n$db['default']['dbcollat'] = 'utf8_general_ci';\r\n$db['default']['swap_pre'] = '';\r\n$db['default']['autoinit'] = TRUE;\r\n$db['default']['stricton'] = FALSE;<\/pre>\n

Save and close the file.<\/p>\n

Now, import the fuel\/install\/fuel_schema.sql<\/em> file into the newly created database. You can do that using the following command:<\/p>\n

# mysql -u fuelusr -p fuel < fuelcms\/fuel\/install\/fuel_schema.sql<\/pre>\n

When prompted, enter the password you set for the fuelusr user.<\/p>\n

You need to set an encryption key and fill in the appropriate line in the fuelcms\/fuel\/application\/config\/config.php<\/em> file. You can get a random encryption key at: http:\/\/randomkeygen.com\/ Open the file:<\/p>\n

# vim fuelcms\/fuel\/application\/config\/config.php<\/pre>\n

After setting up the key, our line looks like this:<\/p>\n

$config['encryption_key'] 'RvT1WH17eg9a1w7INabs5sXUnuE3xeQX' ;<\/pre>\n

Last but not least, set additional configuration values within the MY_fuel.php<\/em> file: Configure your site name and enable the admin backend:<\/p>\n

# vim fuelcms\/fuel\/application\/config\/MY_fuel.php\r\n\r\n$config['site_name'] = 'your_site_name';\r\n\r\n\/\/ whether the admin backend is enabled or not\r\n$config['admin_enabled'] = TRUE;<\/pre>\n

Set the correct ownership of the fuelcms<\/em> directory:<\/p>\n

# chown www-data: -R fuelcms\/<\/pre>\n

CONFIGURE NGINX FOR FUEL CMS<\/strong><\/p>\n

Your next step is to configure an Nginx block so you can access Fuel CMS using a domain. Therefore, create a new file using the below command:<\/p>\n

# vim \/etc\/nginx\/sites-available\/your_domain<\/pre>\n

Paste the following into the file:<\/p>\n

server {\r\n        listen 80 ;\r\n\r\n        root \/var\/www\/fuelcms;\r\n        index index.php index.html index.htm;\r\n        rewrite ^\/sitemap_index\\.xml$ \/index.php?sitemap=1 last;\r\n        rewrite ^\/([^\/]+?)-sitemap([0-9]+)?\\.xml$ \/index.php?sitemap=$1&sitemap_n=$2 last;\r\n\r\n        server_name your_domain.com ;\r\n\r\n        access_log \/var\/log\/nginx\/your_domain\/access.log;\r\n        error_log \/var\/log\/nginx\/your_domain\/error.log;\r\n\r\n        location \/ {\r\n                # try_files $uri $uri\/ =404;\r\n                try_files $uri $uri\/ \/index.php?q=$uri&$args;\r\n        }\r\n\r\n        error_page 404 \/404.html;\r\n\r\n        error_page 500 502 503 504 \/50x.html;\r\n        location = \/50x.html {\r\n                root \/usr\/share\/nginx\/html;\r\n        }\r\n\r\n        location ~ \\.php$ {\r\n                try_files $uri =404;\r\n                fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n                fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n                fastcgi_index index.php;\r\n                include fastcgi_params;\r\n\r\n        }\r\n}<\/pre>\n

Of course, you should replace the your_domain values with your actual domain.<\/p>\n

Enable the site:<\/p>\n

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

Restart Nginx:<\/p>\n

# \/etc\/init.d\/nginx restart<\/pre>\n

Now, open your favorite web browser and navigate to http:\/\/your_domain.com. The welcome page for Fuel CMS will appear with instructions on finishing the installation. Nginx doesn’t use .htaccess files, so you can skip the first step. The second step is already completed, but the third isn’t. Therefore, make the required directories writable. Execute the following commands:<\/p>\n

# chmod +x \/var\/www\/fuelcms\/fuel\/application\/cache\/\r\n\r\n# chmod +x \/var\/www\/fuelcms\/fuel\/application\/cache\/dwoo\/\r\n\r\n# chmod +x \/var\/www\/fuelcms\/fuel\/application\/cache\/dwoo\/compiled\r\n\r\n# chmod +x \/var\/www\/fuelcms\/assets\/images<\/pre>\n

The fourth step is already completed.<\/p>\n

To access the FUEL administration backend, go to:<\/p>\n

http:\/\/your_domain.com\/fuel<\/p>\n

and use the following login credentials:<\/p>\n

Username: admin<\/p>\n

Password: admin<\/p>\n

After logging in, you need to change your admin password.<\/p>\n

That is it, you have successfully installed Fuel CMS on your Ubuntu 14.04 VPS<\/a> with Nginx, PHP5-FPM and MySQL.<\/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 Fuel CMS 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":"

Fuel CMS is a lightweight, highly customizable CMS built with the very popular PHP framework CodeIgniter. You can create custom … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17301,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1710,1702,13,1698,1712,1707],"tags":[830,829,39,49,601],"yoast_head":"\nInstall Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - 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-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\" \/>\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-06-25T21:26:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-15T15:46:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png\" \/>\n\t<meta property=\"og:image:width\" content=\"304\" \/>\n\t<meta property=\"og:image:height\" content=\"81\" \/>\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=\"5 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-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL\",\"datePublished\":\"2015-06-25T21:26:00+00:00\",\"dateModified\":\"2022-12-15T15:46:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\"},\"wordCount\":590,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png\",\"keywords\":[\"CodeIgniter\",\"fuel cms\",\"mysql\",\"nginx\",\"ubuntu 14.04\"],\"articleSection\":[\"CMS, CRM, ERP\",\"Databases\",\"Tutorials\",\"Ubuntu\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\",\"name\":\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png\",\"datePublished\":\"2015-06-25T21:26:00+00:00\",\"dateModified\":\"2022-12-15T15:46:39+00:00\",\"description\":\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png\",\"width\":304,\"height\":81},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL\"}]},{\"@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 Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting","description":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - 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-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/","og_locale":"en_US","og_type":"article","og_title":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting","og_description":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-06-25T21:26:00+00:00","article_modified_time":"2022-12-15T15:46:39+00:00","og_image":[{"width":304,"height":81,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL","datePublished":"2015-06-25T21:26:00+00:00","dateModified":"2022-12-15T15:46:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/"},"wordCount":590,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png","keywords":["CodeIgniter","fuel cms","mysql","nginx","ubuntu 14.04"],"articleSection":["CMS, CRM, ERP","Databases","Tutorials","Ubuntu","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/","url":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/","name":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png","datePublished":"2015-06-25T21:26:00+00:00","dateModified":"2022-12-15T15:46:39+00:00","description":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/06\/fuelcms.png","width":304,"height":81},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-fuel-cms-on-an-ubuntu-14-04-vps-with-nginx-php-fpm-and-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Fuel CMS on an Ubuntu 14.04 VPS with Nginx, PHP-FPM and MySQL"}]},{"@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\/17294"}],"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=17294"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17294\/revisions"}],"predecessor-version":[{"id":44308,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17294\/revisions\/44308"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17301"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17294"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17294"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17294"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}