{"id":16982,"date":"2015-03-24T17:14:51","date_gmt":"2015-03-24T22:14:51","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16982"},"modified":"2022-06-03T03:44:26","modified_gmt":"2022-06-03T08:44:26","slug":"install-baun-cms-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/","title":{"rendered":"Install Baun CMS on an Ubuntu 14.04 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"  wp-image-16992 alignleft\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png\" alt=\"install-baun-cms-on-an-ubuntu-14-04-vps\" width=\"117\" height=\"117\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png 185w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1-100x100.png 100w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1-75x75.png 75w\" sizes=\"(max-width: 117px) 100vw, 117px\" \/>In this blog post we will show you how to install Baun CMS on an Ubuntu 14.04 VPS with Nginx. Baun CMS is a modern, lightweight and extensible flat-file CMS, with no database and administration backend and is a perfect solution for small websites. The main advantages of a flat-file CMS systems are simplicity, portability, security, speed and version control. This guide should work on other <a href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well but was tested and written for <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a>.<\/p>\n<p><!--more--><\/p>\n<h4>Login to your VPS via SSH<\/h4>\n<pre>ssh user@vps<\/pre>\n<h4>Update the system and install necessary packages.<\/h4>\n<pre>user@vps:~# sudo apt-get update \nuser@vps:~# sudo apt-get -y upgrade\nuser@vps:~# sudo apt-get install python-software-properties git vim<\/pre>\n<h4>Install PHP and Nginx<\/h4>\n<p>The latest version of Nginx 1.6.2 is not available via the default Ubuntu repositories, so we will add the &#8220;nginx\/stable&#8221; PPA, update the system and install the nginx package.<\/p>\n<pre>user@vps:~# sudo add-apt-repository ppa:nginx\/stable\nuser@vps:~# sudo apt-get update\nuser@vps:~# sudo apt-get install nginx \nuser@vps:~# sudo apt-get php5-fpm php5-cli<\/pre>\n<h4>Install Composer<\/h4>\n<p>Composer is a dependency manager for PHP with which you can install packages. Composer will pull all the required libraries you need for your project.<\/p>\n<pre>user@vps:~# curl -sS https:\/\/getcomposer.org\/installer | php\nuser@vps:~# sudo mv composer.phar \/usr\/local\/bin\/composer<\/pre>\n<h4>Clone the git repository<\/h4>\n<p>Create a root directory for your web site and clone the git repository from github using the following commands:<\/p>\n<pre>user@vps:~# mkdir -p ~\/yourBaunSite.com\/{public_html,logs}\nuser@vps:~# git clone https:\/\/github.com\/BaunCMS\/Baun.git ~\/yourBaunSite.com\/public_html\nuser@vps:~# cd ~\/yourBaunSite.com\/public_html\n\n<\/pre>\n<h4>Install Dependencies<\/h4>\n<p>Run composer install to install all dependencies user@vps:~# composer install<\/p>\n<h4>PHP-FPM configuration<\/h4>\n<p>Create a new PHP-FPM pool for your user:<\/p>\n<pre>user@vps:~# sudo tee \/etc\/php5\/fpm\/pool.d\/$(whoami).conf &lt;&lt; EOF\n[$(whoami)]\nuser = $(whoami)  \ngroup = $(whoami)  \nlisten = \/var\/run\/php5-fpm-$(whoami).sock  \nlisten.owner = $(whoami)\nlisten.group = $(whoami)  \nlisten.mode = 0666  \npm = ondemand  \npm.max_children = 5  \npm.process_idle_timeout = 10s;  \npm.max_requests = 200  \nchdir = \/  \nEOF\n<\/pre>\n<p>Restart PHP-FPM<\/p>\n<pre>user@vps:~# sudo service php5-fpm restart<\/pre>\n<h4>Nginx configuration<\/h4>\n<p>Create a new Nginx server block with the following content:<\/p>\n<pre>user@vps:~# sudo tee \/etc\/nginx\/sites-available\/yourBaunSite.com &lt;&lt; EOF\nserver {\n    server_name yourBaunSite.com;\n    listen 80;\n    root $HOME\/yourBaunSite.com\/public_html\/public;\n    access_log $HOME\/yourBaunSite.com\/logs\/access.log;\n    error_log $HOME\/yourBaunSite.com\/logs\/error.log;\n    index index.php;\n \n    location \/ {\n        try_files \\$uri \\$uri\/ \/index.php?\\$args;\n    }\n \n    location ~* \\.(?:ico|css|js|gif|jpe?g|png|ttf|woff)\\$ {\n        access_log off;\n        expires 30d;\n        add_header Pragma public;\n        add_header Cache-Control \"public, mustrevalidate, proxy-revalidate\";\n    }\n \n    location ~ \\.php\\$ {\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)\\$;\n        fastcgi_pass unix:\/var\/run\/php5-fpm-$(whoami).sock;\n        fastcgi_index index.php;\n        include fastcgi_params;\n        fastcgi_param SCRIPT_FILENAME \\$document_root\\$fastcgi_script_name;\n        fastcgi_intercept_errors off;\n        fastcgi_buffer_size 16k;\n        fastcgi_buffers 4 16k;\n    }\n \n    location ~ \/\\.ht {\n        deny all;\n    }\n \n}\nEOF\n<\/pre>\n<p>Test the Nginx configuration<\/p>\n<pre>user@vps:~# sudo nginx -t<\/pre>\n<p>Activate the server block by creating a symbolic link and restart nginx:<\/p>\n<pre>user@vps:~# sudo ln -s \/etc\/nginx\/sites-available\/yourBaunSite.com \/etc\/nginx\/sites-enabled\/yourBaunSite.com\nuser@vps:~# sudo \/etc\/init.d\/nginx restart<\/pre>\n<p>That&#8217;s it.\u00a0<span class=\"st\">You have successfully installed your<\/span>\u00a0Baun CMS. Now open your browser and type the address of your website.<\/p>\n<p>For example to create a new page in Baun CMS all you need to do is to create a new .md (markdown) file in the &#8220;content&#8221; directory.\u00a0 In case you never heard of markdown, it is a simple text-based markup language that can be converted to HTML.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"linux vps hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">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&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">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":"<p>In this blog post we will show you how to install Baun CMS on an Ubuntu 14.04 VPS with Nginx. &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Baun CMS on an Ubuntu 14.04 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#more-16982\" aria-label=\"Read more about Install Baun CMS on an Ubuntu 14.04 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16992,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1710,13,1698],"tags":[749,767,748,49,51],"class_list":["post-16982","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cms-crm-erp","category-tutorials","category-ubuntu","tag-baun","tag-baun-cms","tag-flat","tag-nginx","tag-php-fpm","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Baun CMS on an Ubuntu 14.04 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\/install-baun-cms-on-an-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Baun CMS on an Ubuntu 14.04 VPS\" \/>\n<meta property=\"og:description\" content=\"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-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-03-24T22:14:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"185\" \/>\n\t<meta property=\"og:image:height\" content=\"185\" \/>\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-baun-cms-on-an-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Baun CMS on an Ubuntu 14.04 VPS\",\"datePublished\":\"2015-03-24T22:14:51+00:00\",\"dateModified\":\"2022-06-03T08:44:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/\"},\"wordCount\":380,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/install-baun-cms-on-an-ubuntu-14-04-vps1.png\",\"keywords\":[\"baun\",\"baun cms\",\"flat\",\"nginx\",\"php-fpm\"],\"articleSection\":[\"CMS, CRM, ERP\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/\",\"name\":\"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/install-baun-cms-on-an-ubuntu-14-04-vps1.png\",\"datePublished\":\"2015-03-24T22:14:51+00:00\",\"dateModified\":\"2022-06-03T08:44:26+00:00\",\"description\":\"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/install-baun-cms-on-an-ubuntu-14-04-vps1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/install-baun-cms-on-an-ubuntu-14-04-vps1.png\",\"width\":185,\"height\":185},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-baun-cms-on-an-ubuntu-14-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Baun CMS on an Ubuntu 14.04 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"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\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"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\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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 Premium plugin. -->","yoast_head_json":{"title":"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting","description":"Install Baun CMS on an Ubuntu 14.04 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\/install-baun-cms-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install Baun CMS on an Ubuntu 14.04 VPS","og_description":"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-03-24T22:14:51+00:00","article_modified_time":"2022-06-03T08:44:26+00:00","og_image":[{"width":185,"height":185,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.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-baun-cms-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Baun CMS on an Ubuntu 14.04 VPS","datePublished":"2015-03-24T22:14:51+00:00","dateModified":"2022-06-03T08:44:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/"},"wordCount":380,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png","keywords":["baun","baun cms","flat","nginx","php-fpm"],"articleSection":["CMS, CRM, ERP","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/","name":"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png","datePublished":"2015-03-24T22:14:51+00:00","dateModified":"2022-06-03T08:44:26+00:00","description":"Install Baun CMS on an Ubuntu 14.04 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/install-baun-cms-on-an-ubuntu-14-04-vps1.png","width":185,"height":185},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-baun-cms-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Baun CMS on an Ubuntu 14.04 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","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":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"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\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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\/16982","targetHints":{"allow":["GET"]}}],"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=16982"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16982\/revisions"}],"predecessor-version":[{"id":39729,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16982\/revisions\/39729"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16992"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16982"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16982"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16982"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}