Update Debian installation documentation

This commit is contained in:
Frederic Guillot 2015-05-20 15:13:50 -04:00
parent f50b7ed2cc
commit 8ebeac656b
1 changed files with 21 additions and 0 deletions

View File

@ -1,6 +1,27 @@
How to install Kanboard on Debian?
==================================
Debian 8 (Jessie)
-----------------
Install Apache and PHP:
```bash
apt-get update
apt-get install -y php5 php5-sqlite php5-gd unzip
service apache2 restart
```
Install Kanboard:
```bash
cd /var/www/html
wget http://kanboard.net/kanboard-latest.zip
unzip kanboard-latest.zip
chown -R www-data:www-data kanboard/data
rm kanboard-latest.zip
```
Debian 7 (Wheezy)
-----------------