How to Install and Configure Winter CMS on Ubuntu 20.04
Winter CMS is a free, open source, self-hosted content management system with support for Twig templating, image cropping, advanced file management and expandable functionality via plugins. This guide explains how to install Winter CMS on a Ubuntu 20.04 server with LAMP.
Prerequisites
Before starting this guide:
- Deploy a new Vultr Ubuntu 20.04 server instance
- Create a non-root sudo user
- Create a DNS "A" record with a fully-qualified domain name pointed to your server
- Install a LAMP stack.
1. Edit Apache Configuration
SSH to your server as a non-root user with sudo access.
Edit the Apache default site configuration file to make changes that will allow Winter CMS to run smoothly on your server.
$ sudo nano /etc/apache2/sites-enabled/000-default.conf
Find this line:
DocumentRoot "/var/www/html"
Change the document root entry to include the rules below.
<Directory /var/www/html/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory>
Save and close the file
Enable the
mod_rewrite
Apache module.$ sudo a2enmod rewrite
Enable and start Apache 2 at boot time.
$ sudo systemctl enable apache2 $ sudo systemctl start apache2
Restart the service.
$ sudo systemctl restart apache2
Verify Apache is running.
$ sudo systemctl status apache2
Install PHP and all required extensions.
$ sudo apt -y install php php-ctype php-curl php-xml php-fileinfo php-gd php-json php-mbstring php-mysql php-sqlite3 php-zip libapache2-mod-php
2. Configure Database
Login to MySQL.
$ sudo mysql -u root -p
Create the Winter CMS database.
> CREATE DATABASE winterdb CHARACTER SET utf8 COLLATE utf8_general_ci;
Create a new database user and assign a password.
> CREATE USER 'winter_user'@'localhost' IDENTIFIED BY 'YOUR_STRONG_PASSSWORD';
Grant the new user full rights to the Winter CMS database.
> GRANT ALL PRIVILEGES ON winterdb.* TO 'winter_user'@'localhost';
Refresh MySQL user privileges and exit.
> FLUSH PRIVILEGES; > EXIT
Test if your newly created user has rights to the database.
$ mysql -u winter_user - p
Enter the user password and display databases assigned to the user.
> show databases; > EXIT
Enable MySQL server to start at boot time, and restart the service to apply changes.
$ sudo systemctl enable mysql $ sudo systemctl restart mysql
Option 1: Install with the Web Installer
The Winter CMS web installer is recommended for non-technical users.
Change to the web root.
$ cd /var/www/html
Download the installation package.
$ sudo wget https://github.com/wintercms/web-installer/releases/download/v1.0.0-beta3/install.zip
Unzip the downloaded file.
$ sudo unzip install.zip
Grant Apache read and write permissions to the new directory.
$ sudo CHOWN -R www-data:www-data /var/www/html/
Navigate to your server's installation URL in a web browser.
http://YOUR_DOMAIN_NAME/install.html
You will be presented a Winter CMS Installation screen.
Click Begin compatibility checks to start the installation process.
If all checks pass, accept the CMS terms and conditions to continue the installation.
Enter your project name, domain name, and preferred backend access URL.
Enter your database name, username, and password you created earlier in this guide.
Enter the information for the first administrative user. Fill in the form with your name, preferred username, current email address, and password.
After installation is done, log in to your CMS backend and start building your first website. To access your Winter CMS backend. add /backend at the end of your URL with
index.php
. For example:http://YOUR_DOMAIN/index.php/backend
Option 2: Manual Installation with Composer
Winter CMS uses Composer to manage its dependencies.
To install Composer, update your system and install Composer PHP extensions.
$ sudo apt update $ sudo apt install wget php-cli php-zip unzip curl
Download Composer
$ curl -sS https://getcomposer.org/installer | php
Move the downloaded file to
/usr/local/bin
to make it a system wide application on your server.$ sudo mv composer.phar /usr/local/bin/composer
Run the composer command to verify your installation and the current version running on your Ubuntu 20.04 server.
$ composer
Creating a new project for Winter CMS.
$ composer create-project wintercms/winter myexample
Move the project to your web root directory.
$ sudo mv -r myexample/ /var/www/html/
Grant Apache read and write permissions on the new directory.
$ sudo chown -R www-data:www-data /var/www/html/myexample/
Create a new virtual host file.
$ sudo nano /etc/apache2/sites-available/example.com.conf
Paste the information below. Change
example.com
to your domain name andmyexample
to your root web server directory.<VirtualHost *:80> ServerName example.com ServerAdmin webmaster@localhost DocumentRoot /var/www/html/myexample ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
Enable the configuration file.
$ sudo a2ensite example.com.conf
Restart Apache.
$ sudo systemctl reload apache2
Navigate to the new web server directory.
$ cd /var/www/html/myexample
Install Winter CMS.
$ php artisan winter:install
Enter 0 to choose MySQL database.
Database type [SQLite]: [0] MySQL [1] Postgres [2] SQLite [3] SQL Server >
Enter
127.0.0.1
as your database server's IP address.MySQL Host [127.0.0.1]: >
Enter the default port,
3306
.MySQL Port [3306]: >
Enter the Winter CMS database name, username, and password.
Database Name [database]: > MySQL Login [root]: > MySQL Password []: >
Create a Winter CMS admin account to access the site backend.
First Name [Admin]: > Last Name [Person]: > Email Address [admin@example.com]: > Admin Login [admin]: > Admin Password [admin]: >
Enter your domain name.
Application URL [http://localhost]: >
Choose whether you wish to change backend and other advanced options.
Would you like to change the backend options? (URL, default locale, default timezone) (yes/no) [no]: > Configure advanced options? (yes/no) [no]: >
Winter CMS will automatically install and migrate all modules to build your project. Access the Winter CMS backend dashboard by visiting your server URL from a web browser to start building your website. For example:
http://YOUR_DOMAIN/index.php/backend
Update Winter CMS
Because Winter CMS still releases beta versions of its platform, its good to update your CMS each time a new version is released. To do so, simply use artisan to enter winter:update
as your argument.
$ php artisan winter:update
Next Steps
- If you receive a connection not secure prompt, install a free Let’s encrypt SSL certificate.
- See the Winter CMS documentation.