Forked Bolt CMS
Basic bolt cms / blog installation
Bolt is a tool for Content Management, which strives to be as simple and straightforward as possible. It is quick to set up, easy to configure, uses elegant templates, and above all: It’s a joy to use. Bolt is created using modern open source libraries, and is best suited to build sites in HTML5 with modern markup.
Bolt is also designed to work as a blog platform.
Basic bolt cms installation. It contains php, apache2 and sqlite as database.
Bolt is also designed to work as a blog platform.
Basic bolt cms installation. It contains php, apache2 and sqlite as database.
Configuration summary
Ubuntu Utopic Unicorn 14.10
Package apache2 install
Files
/etc/apache2/sites-available/bolt.conf ensure file exist
<VirtualHost _default_:80> DocumentRoot /var/www/bolt <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> </VirtualHost>
Hooks
Post configure-apache
#!/bin/bash set -ue a2enmod rewrite a2dissite 000-default a2ensite bolt
Post install-bolt
- parameter 1: http://bolt.cm/distribution/bolt-latest.tar.gz#!/bin/bash set -ue tar xzf $1 -C /usr/local/src/ mv /usr/local/src/bolt* /var/www/bolt
Package php5-curl install
Package libapache2-mod-php5 install
Package php5-gd install
Package php5-sqlite install
-
By alvin on 12/08/2015
-
Ubuntu Utopic Unicorn 14.10
-
- Beta (testing)
Quick Deployment
Advanced Deployment