-
Notifications
You must be signed in to change notification settings - Fork 1
How to install Baseboard
Lin edited this page Aug 4, 2017
·
7 revisions
cd /path/to/your/workspace
git clone git://github.com/KuiKui/Baseboard.git
cd Baseboard
git submodule init
git submodule update
cp config/config.yml.dist config/config.yml
Edit this new file to [configure Baseboard] (https://github.com/KuiKui/Baseboard/wiki/How-to-configure-Baseboard).
With public directory : /path/to/your/workspace/Baseboard/web
Apache configuration file sample :
Alias /crew /path/to/your/workspace/Baseboard/web
<Directory "/path/to/your/workspace/Baseboard/web">
AllowOverride All
Allow from All
</Directory>
<FilesMatch "\.(gif|jpg|jpeg|png|css|js)$">
FileETag none
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 11 months"
</IfModule>
</FilesMatch>