Update Debian installation documentation
This commit is contained in:
parent
f50b7ed2cc
commit
8ebeac656b
|
|
@ -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)
|
||||
-----------------
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue