• Contact
  • Contact Us
  • Disclamer
  • Home 1
  • Home 2
  • Home 3
  • Privacy Policy
Friday, May 9, 2025
How VPS - How to use/setup VPS
  • Login
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
How VPS - How to use/setup VPS
No Result
View All Result
Home Operating System Fedora

Installing Bolt CMS on Fedora 28

How VPS by How VPS
December 1, 2019
in Fedora
0
0
SHARES
27
VIEWS
Share on FacebookShare on Twitter

Contents

  1. Using a Different System?
  2. Requirements
  3. Before you begin
  4. Install PHP, required PHP extensions, MySQL/MariaDB and Nginx
  5. Configure Nginx
  6. Download and install Bolt CMS
  7. Want to contribute?

Using a Different System?

  • Installing Bolt CMS on Ubuntu 16.04 LTS

  • Installing Bolt CMS on Debian 9 (Stretch)

  • Installing Bolt CMS on FreeBSD 12

Are we missing a guide for your target system? Request one, or submit your own!


Bolt is an open source CMS written in PHP. Bolt’s source code is hosted on GitHub. This guide will show you how to install Bolt CMS on a fresh Fedora 28 Vultr instance.

Requirements

  • PHP 5.5.9 or higher.
  • The following common PHP extensions:
    • pdo
    • mysqlnd (to use MySQL as a database)
    • pgsql (to use PostgreSQL as a database)
    • openssl
    • curl
    • gd
    • intl (optional but recommended)
    • json
    • mbstring (optional but recommended)
    • opcache (optional but recommended)
    • posix
    • xml
    • fileinfo
    • exif
    • zip
  • A minimum of 32MB of memory allocated to PHP.
  • SQLite, MySQL or PostgreSQL database.
  • Nginx or Apache with mod_rewrite enabled.

Before you begin

Check OS version.

cat /etc/fedora-release
# Fedora release 28 (Twenty Eight)

Create a new non-root user account with sudo access and switch to it.

useradd -c "John Doe" johndoe && passwd johndoe
usermod -aG wheel johndoe
su - johndoe

NOTE: Replace johndoe with your username.

Ensure that your system is up to date.

sudo dnf check-upgrade || sudo dnf upgrade -y

Set up the timezone.

timedatectl list-timezones
sudo timedatectl set-timezone 'Region/City'

Install required and useful packages.

sudo dnf install -y wget vim unzip bash-completion git

For simplicity, disable SELinux and Firewall.

sudo setenforce 0; sudo systemctl stop firewalld; sudo systemctl disable firewalld

Install PHP, required PHP extensions, MySQL/MariaDB and Nginx

Install PHP and required PHP extensions.

sudo dnf install -y php-cli php-fpm php-mbstring php-zip php-mysqlnd php-pgsql php-sqlite3 php-curl php-simplexml php-common php-gd php-intl php-json php-opcache php-xml php-zip php-common php-process

Check the PHP version.

php --version
# PHP 7.2.6 (cli) (built: May 22 2018 16:22:08) ( NTS )

Start and enable PHP-FPM service.

sudo systemctl start php-fpm.service
sudo systemctl enable php-fpm.service

Download and install MariaDB.

sudo dnf install -y mariadb-server

Check the MariaDB version.

mysql --version

Start and enable the MariaDB service.

sudo systemctl enable mariadb.service
sudo systemctl start mariadb.service

Run the mysql_secure_installation script to improve the security of your MariaDB installation.

sudo mysql_secure_installation

Log into MariaDB as the root user.

mysql -u root -p
# Enter password:

Create a new MariaDB database and user, and remember the credentials.

create database dbname;
grant all on dbname.* to 'username' identified by 'password';
flush privileges;

Exit MySQL.

exit

Install Nginx.

sudo dnf install -y nginx

Check the Nginx version.

nginx -v

Start and enable Nginx.

sudo systemctl enable nginx.service
sudo systemctl start nginx.service

Configure Nginx

Run sudo vim /etc/nginx/conf.d/bolt.conf and populate it with the following text.

server {
  listen [::]:80;
  listen 80;

  server_name example.com;

  index index.php index.html;
  root /var/www/bolt/public;

  location / {
    try_files $uri $uri/ /index.php?$query_string;
  }

  location ~ [^/]/.php(/|$) {
    try_files /index.php =404;
    fastcgi_split_path_info ^(.+?/.php)(/.*)$;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param HTTP_PROXY "";
    fastcgi_param HTTPS $https if_not_empty;
    fastcgi_pass unix:/run/php-fpm/www.sock;
    fastcgi_index index.php;
    include fastcgi_params;
  }
}

Test the Nginx configuration.

sudo nginx -t

Reload Nginx.

sudo systemctl reload nginx.service

Download and install Bolt CMS

Create a document root directory.

sudo mkdir -p /var/www/bolt

Change ownership of the /var/www/bolt directory to johndoe.

sudo chown -R johndoe:johndoe /var/www/bolt

Navigate to the document root.

cd /var/www/bolt

Download the latest stable release of Bolt CMS from the command line.

wget https://bolt.cm/distribution/bolt-latest.zip

Unzip Bolt CMS, remove the downloaded zip file and move the Bolt CMS files and directories to /var/www/bolt.

unzip bolt-latest.zip
rm bolt-latest.zip
mv bolt-v3.5.3/* bolt-v3.5.3/.* .  # Just press enter on warning
rmdir bolt-v3.5.3/

NOTE: If there is a newer version, you should update Bolt version numbers.

To finish the installation, you will need to rename the following files:

mv .bolt.yml.dist .bolt.yml
mv composer.json.dist composer.json
mv composer.lock.dist composer.lock
mv src/Site/CustomisationExtension.php.dist src/Site/CustomisationExtension.php 

Change ownership of the /var/www/bolt directory to nginx.

sudo chown -R nginx:nginx /var/www/bolt

Run sudo vim /etc/php-fpm.d/www.conf and set the user and group to nginx.

sudo vim /etc/php-fpm.d/www.conf
# user = nginx
# group = nginx

Restart php-fpm.service.

sudo systemctl restart php-fpm.service

Open your domain/IP in the web browser and follow the Bolt CMS installation wizard. Bolt uses the SQLite database by default. If you want to use another supported database, you can configure it in the app/config/config.yml file. After that, you will have Bolt installed on your Fedora 28 server. To access Bolt’s administrative interface, append /bolt to your IP/domain.

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
Previous Post

How to Install the Neos CMS on Fedora 28

Next Post

How to Install and Configure TaskBoard on Fedora 30

Next Post

How to Install and Configure TaskBoard on Fedora 30

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

No Result
View All Result

Recent Post

Install Imagemagick on CentOS
CentOS

Install Imagemagick on CentOS

by How VPS
June 28, 2023
0

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear...

Read more
how to Check phpinfo

How to Check phpinfo of Hosting or VPS?

June 28, 2023
Failed to download metadata for repo 'appstream' on Centos 8

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

February 25, 2022
How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”?

November 17, 2020
How to optimize Mysql or MariaDB

How to optimize Mysql or MariaDB

November 3, 2020

Recent News

  • Install Imagemagick on CentOS
  • How to Check phpinfo of Hosting or VPS?
  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

Category

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel
  • About
  • Advertise
  • Careers
  • Contact

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
Thabet