{"id":16571,"date":"2014-12-12T13:25:30","date_gmt":"2014-12-12T19:25:30","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16571"},"modified":"2022-11-01T03:44:22","modified_gmt":"2022-11-01T08:44:22","slug":"install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/","title":{"rendered":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-16574\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png\" alt=\"install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\" width=\"151\" height=\"151\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png 400w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm-300x300.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm-100x100.png 100w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm-75x75.png 75w\" sizes=\"(max-width: 151px) 100vw, 151px\" \/>In this tutorial, we will show you how to install FluxBB on a <a title=\"CentOS VPS\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 7 VPS<\/a> with Nginx, MariaDB and PHP-FPM. FluxBB is blazing fast and open source forum application written in PHP. Some of the main features of FluxBB are: clean admin interface, flexible permission system, easy to use, blazing fast speed and powerful moderator tools. This guide should work on other <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well but was tested and written for a CentOS 7 VPS.<\/p>\n<p><!--more--><\/p>\n<h4>Update the system and install the necessary packages.<\/h4>\n<pre>root@vps:~# yum -y update\r\nroot@vps:~# yum install unzip wget<\/pre>\n<h4>Install MariaDB and create a database.<\/h4>\n<p>To install a MariaDB server run the following command:<\/p>\n<pre>root@vps:~# yum install mariadb-server mariadb<\/pre>\n<p>start the service and enable it at boot time:<\/p>\n<pre>root@vps:~# systemctl start mariadb.service\r\nroot@vps:~# systemctl enable mariadb.service<\/pre>\n<p>It is very important to secure your MariaDB server, run the following script before creating and populating the databases.<\/p>\n<pre>mysql_secure_installation<\/pre>\n<p>Once you are finished with the step above, login as the MariaDB root user and create a new database and user:<\/p>\n<pre>root@vps:~# mysql -uroot -p<\/pre>\n<pre>MariaDB [(none)]&gt;&gt; create database fluxbb;\r\nMariaDB [(none)]&gt;&gt; GRANT ALL PRIVILEGES ON fluxbb.* TO 'fluxbb'@'localhost' IDENTIFIED BY 'fluxbbPassword';\r\nMariaDB [(none)]&gt;&gt; flush privileges;\r\nMariaDB [(none)]&gt;&gt; \\q;<\/pre>\n<h4>Download and unzip FluxBB<\/h4>\n<p>At the time of this writing the latest stable version of FluxBB is version 1.5.7. The following commands will create a root directory for your forum and download and extract the FluxBB zip file.<\/p>\n<pre>root@vps:~# mkdir -p \/var\/www\/html\/myForum.org\/\r\nroot@vps:~# cd \/var\/www\/html\/myForum.org\/\r\nroot@vps:~# wget http:\/\/fluxbb.org\/download\/releases\/1.5.7\/fluxbb-1.5.7.zip\r\nroot@vps:~# unzip fluxbb-1.5.7.zip\r\nroot@vps:~# mv fluxbb-1.5.7\/* .\r\nroot@vps:~# rm -rf fluxbb-1.5.7*\r\n<\/pre>\n<h4>Install and configure PHP and Nginx<\/h4>\n<p>Installing PHP and Nginx is pretty easy, just run the following command:<\/p>\n<pre>root@vps:~# yum install nginx php-fpm php-cli php-mysqlnd php-mbstring php-gd php-curl php-pdo<\/pre>\n<pre>root@vps:~# systemctl start php-fpm.service\r\nroot@vps:~# systemctl enable php-fpm.service\r\nroot@vps:~# systemctl start nginx.service \r\nroot@vps:~# systemctl enable nginx.service<\/pre>\n<p>To change PHP-FPM to listen on a unix socket, open the default www pool<\/p>\n<pre>root@vps:~# vim \/etc\/php-fpm.d\/www.conf<\/pre>\n<p>and change from<\/p>\n<pre>listen = 127.0.0.1:9000<\/pre>\n<p>to<\/p>\n<pre>listen = \/var\/run\/php-fpm\/php-fpm.socket<\/pre>\n<p>and restart the service for changes to take effect<\/p>\n<pre>root@vps:~# systemctl restart php-fpm<\/pre>\n<p>Create a php session directory and change the ownership to apache (the user under which PHP runs).<\/p>\n<pre>root@vps:~# mkdir \/var\/lib\/php\/session<\/pre>\n<pre>root@vps:~# chown apache:apache \/var\/lib\/php\/session<\/pre>\n<p>Create a new Nginx server block with the following content:<\/p>\n<pre>root@vps:~# cat &lt;&lt;'EOF' &gt;&gt; \/etc\/nginx\/conf.d\/myForum.org.conf\r\nserver {\r\n    server_name myForum.org;\r\n    listen 80;\r\n    root \/var\/www\/html\/myForum.org;\r\n    access_log \/var\/log\/nginx\/myForum.org-access.log;\r\n    error_log \/var\/log\/nginx\/myForum.org-error.log;\r\n    index index.php;\r\n \r\n    location \/ {\r\n        try_files $uri $uri\/ \/rewrite.php?$args;\r\n    }\r\n\r\n    location ~ \/(cache|include|lang|plugins) {\r\n       deny all;\r\n       return 403;\r\n    }\r\n\r\n    location ~ \\.php$ {\r\n        fastcgi_index index.php;\r\n        fastcgi_split_path_info ^(.+\\.php)(.*)$;\r\n        fastcgi_keep_conn on;\r\n        include \/etc\/nginx\/fastcgi_params;\r\n        fastcgi_pass unix:\/var\/run\/php-fpm\/php-fpm.socket;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    }\r\n \r\n    location ~ \/\\.ht {\r\n        deny all;\r\n    }\r\n\r\n}\r\nEOF<\/pre>\n<p>Test the Nginx configuration and restart the server by running the following commands:<\/p>\n<pre>root@vps:~# nginx -t\r\n\r\nroot@vps:~#  systemctl restart nginx<\/pre>\n<h4>Set the correct permissions<\/h4>\n<pre>root@vps:~# chown -R apache:apache \/var\/www\/html\/myForum.org\/<\/pre>\n<p>That&#8217;s it. Now open your browser, go to <code>http:\/\/myForum.org\/install.php<\/code> and follow the FluxBB installation wizard.<\/p>\n<hr \/>\n<p>&nbsp;<\/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 set this up 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 tutorial, we will show you how to install FluxBB on a CentOS 7 VPS with Nginx, MariaDB and &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#more-16571\" aria-label=\"Read more about Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16574,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13,1712,1707],"tags":[534,657],"class_list":["post-16571","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","category-web-frameworks","category-web-servers","tag-centos7","tag-fluxbb","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.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | 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-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM\" \/>\n<meta property=\"og:description\" content=\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/\" \/>\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=\"2014-12-12T19:25:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-01T08:44:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\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-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM\",\"datePublished\":\"2014-12-12T19:25:30+00:00\",\"dateModified\":\"2022-11-01T08:44:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/\"},\"wordCount\":379,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png\",\"keywords\":[\"centos7\",\"fluxbb\"],\"articleSection\":[\"CentOS\",\"Tutorials\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/\",\"name\":\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png\",\"datePublished\":\"2014-12-12T19:25:30+00:00\",\"dateModified\":\"2022-11-01T08:44:22+00:00\",\"description\":\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM\"}]},{\"@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 FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting","description":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | 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-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/","og_locale":"en_US","og_type":"article","og_title":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM","og_description":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-12-12T19:25:30+00:00","article_modified_time":"2022-11-01T08:44:22+00:00","og_image":[{"width":400,"height":400,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.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-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM","datePublished":"2014-12-12T19:25:30+00:00","dateModified":"2022-11-01T08:44:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/"},"wordCount":379,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png","keywords":["centos7","fluxbb"],"articleSection":["CentOS","Tutorials","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/","url":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/","name":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png","datePublished":"2014-12-12T19:25:30+00:00","dateModified":"2022-11-01T08:44:22+00:00","description":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm.png","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-fluxbb-on-a-centos-7-vps-with-nginx-and-php-fpm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install FluxBB on a CentOS 7 VPS with Nginx and PHP-FPM"}]},{"@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\/16571","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=16571"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16571\/revisions"}],"predecessor-version":[{"id":43468,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16571\/revisions\/43468"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16574"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16571"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}